printers and login scripts
Hi everyone, I'm after a little confirmation that I do things in a sensible way! The longest part of the login script is the time it takes to add the printers. This is how we do it:
A System variable is set on each machine, called Location, and this helps determine which printer to set as the default. The script 'printers.bat', called in the login.bat script, contains the following:
IF %Location% == upstairs CON2PRT /CD \\SERVER\UpperSchool_HP
IF %Location% == upstairs CON2PRT /C \\SERVER\LowerSchool_HP
IF %Location% == upstairs CON2PRT /C \\SERVER\"ICT_Suite_HP_3600"
IF %Location% == upstairs CON2PRT /C \\SERVER\"New_Build_Upper_School"
IF %Location% == upstairs CON2PRT /C \\SERVER\"New_Build_Lower_School"
plus 2 other printers :)
Is this an efficient way to do it??
Thanks for your help.