Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: batch file help needed  (Read 2152 times)

0 Members and 1 Guest are viewing this topic.

danieloup

  • Guest
batch file help needed
« on: September 14, 2006, 11:28:58 AM »
I work for a company where users do not read or indeed follow any instructions they are given.
So they don't know how to add printers which are easily available on the network, through the printer wizard or using start - run - \\servername\printershare
I now need to create a bat or exe file that we can put on their desktops, that enables them to install any printer the dummy way :-)
basicly I need a bat or exe file that includes user input. All our printers are on one server , all they would need to do is to enter the printer number they want to print to,once they have managed to open the file on the desktop that is :-)) has anyone any idea how I would go about that?


GX1_Man

  • Guest
Re: batch file help needed
« Reply #1 on: September 14, 2006, 05:11:08 PM »
I will move this post to the proper spot for expert assistance.  ;)

MC

  • Guest
Re: batch file help needed
« Reply #2 on: September 21, 2006, 03:16:02 AM »
try using th following


@echo off
Set /P MyServerNo=Please enter Server number:
Set /P MyPrinterNo=Please enter Printer number:

start \\%MyServerNo%\%MyPrinterNo%  


Hope this works.

Now what i would like to know is how to add a printer to someones elses computer by typing the command in myself.

therefore running the command on my pc but the printer is added on someone elses. Is this possible by using their computer name in the dos command


danieloup

  • Guest
Re: batch file help needed
« Reply #3 on: September 21, 2006, 10:11:44 AM »
first of all thanks a lot for your help, will try that tomorrow....
now to your question

I can't see why it should not be possible as long as DNS is configured..or you could always try using the IP adress.
Good luck

MC

  • Guest
Re: batch file help needed
« Reply #4 on: September 22, 2006, 03:07:29 AM »
FAO danialoup

Can you please explain a bit more on how I can do this.

Cheers