I want to install one printer on 25 computers. Can someoine help me with the process to do this via KACE, Thanks
The printer is a networked printer.
0 Comments
[ + ] Show comments
Answers (4)
Answer Summary:
Please log in to answer
Posted by:
jagadeish
12 years ago
Take a look at this link
http://www.itninja.com/question/installing-printing-using-kbox-and-vbscript
Posted by:
dugullett
12 years ago
I've used this in the past. The drivers were installed on my print server. I create an online script and run at user login. Have you created a label for these 25 machines?
ON ERROR RESUME NEXT Set wshNet = CreateObject("WScript.Network") Set wshPrn = wshNet.EnumPrinterConnections For x = 0 To wshPrn.Count - 1 Step 2 If Left(wshPrn.Item(x+1),2) = "\\" Then wshNet.RemovePrinterConnection wshPrn.Item(x+1),True,True Next wshnet.AddWindowsPrinterConnection "\\prtsrv01\OCE2075-001" wshnet.SetDefaultPrinter "\\prtsrv01\OCE2075-001"
Posted by:
pjgeutjens
12 years ago