Need a logon script that will enable the user to have access to multiple Printers without having to install the drivers at each desktop. There has to be a way to do this.
Here's a logon script for you -
Edit \\printserver\printer name
edit "group member" name
edit \\servername\share$
The first line is to sync the client with the Server's time at every logon.Hope this sorts you out...
----------------------------------------------------------
@echo off
net time \\PDCServer /set /yes
ifmember "Group Member"
if not errorlevel 1 goto Exit
net use P: /delete /yes
net use S: /delete /yes
net use U: /delete /yes
net use T: /delete /yes
net use T: \\BDCSHARE\Sharename$ /persistent:yes
net use P: \\BDCSHARE\Sharename$ /persistent:yes
net use S: \\BDCSHARE\Sharename$ /persistent:yes
net use U: /home
con2prt /f
con2prt /c \\PrintServer\printer
con2prt /c \\PrintServer\printer
con2prt /c \\PrintServer\printer
con2prt /c \\PrintServer\printer
:Exit
Exit
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.