G
Guest
hey guys,
this is a logon script i have implemented in one of our windows 2000 server
networks with all workstations windows 2000 professional with SP4. the script
has worked well with us, now we need to add few printers shared on the
network. can someone help me out here on how do i go about from here?
@echo off
REM filename: logon.cmd
echo Hello %username%
echo You are now logged into %computername%
echo Now setting up your computer for network access.
echo Connecting Network Drive
net use t: /DELETE
net use t: \\san01\bull /PERSISTENT:YES
echo Done.
echo Connecting Another Network Drive
net use r: /DELETE
net use r: \\san01\cow /PERSISTENT:YES
echo Done.
Thanks in advance
this is a logon script i have implemented in one of our windows 2000 server
networks with all workstations windows 2000 professional with SP4. the script
has worked well with us, now we need to add few printers shared on the
network. can someone help me out here on how do i go about from here?
@echo off
REM filename: logon.cmd
echo Hello %username%
echo You are now logged into %computername%
echo Now setting up your computer for network access.
echo Connecting Network Drive
net use t: /DELETE
net use t: \\san01\bull /PERSISTENT:YES
echo Done.
echo Connecting Another Network Drive
net use r: /DELETE
net use r: \\san01\cow /PERSISTENT:YES
echo Done.
Thanks in advance