Connecting everyone to a shared printer?

Soldato
Joined
10 Mar 2003
Posts
6,858
I can't for the life of me remember how to do this.

I used to use a tool that is basically a template for the Group Policy.

However I have a shared printer as such:

\\new-server\printer

How can I get every user to connect to this everytime they logon?

Cheers,


M
 
prolly not the nicest way, but you can do it on a login script:

Code:
net use lpt1: \\servername\sharename
 
The_KiD said:
prolly not the nicest way, but you can do it on a login script:

Code:
net use lpt1: \\servername\sharename
That'd just map a port though, surely?

Either Server 2003 R2 makes it easy with its new Print Management Console, or you could use a bit of VBS:

Code:
On Error Resume Next

Set objNetwork = CreateObject("WScript.Network")

objNetwork.AddWindowsPrinterConnection "\\new-server\printer"
 
Back
Top Bottom