|
Question : Sharing printer on Domain
|
|
I have creted a domain in my network and restricted users with GPO's to acess desktop, start menu and many commands i wanted to share the Network printer on printing server by default is there any option ..that the printer is isntalled automatically as user login through login script or throgh any policy kindly tell off. waiting for reply
|
Answer : Sharing printer on Domain
|
|
I would use a vbs script like this:
set WshNetwork=CreateObject ("Wscript.Network") WshNetwork.AddWindowsPrinterConnection "\\servername\sharename" WshNetwork.SetDefaultPrinter "\\servername\sharename"
|
|
|