Logon script

L

Lucas

To anyone reads this, Please help.
I am having trouble finding valid source for windows 2000
server logon script. Is Windows 2000 server script like
Windows NT script? Could someone please supply me with a
sample script detailing mapping drives, and shared
folders. Any other information on Windows 2000 server
logon script can contact me via my email.

Thank You
 
S

Scott Townsend

This is what I have in mine:


REM - - - -
REM Begin Log In Script
REM - - - -

NET TIME /domain /set /y

NET USE W: /DELETE
NET USE W: "\\Server\Project Files" /persistent:yes

NET USE X: /DELETE
NET USE X: \\SERVER\jobs" /persistent:yes

NET USE Y: /DELETE
NET USE Y: "\\Server\%username%$" /persistent:yes

REM Dont Update if on machine that has Server Protect
if exist "C:\Program Files\Trend\SProtect" goto SProtectinstalled

REM - - - -
REM Update the Office Scan Virus Client
REM - - - -
\\server\ofcscan\AUTOPCC.EXE


:SProtectinstalled

REM Update SFA Terms and Conditions if SFA Installed
if exist "C:\Program Files\SFA" goto SFAINSTALLED
GOTO END
:SFAINSTALLED
Copy "\\server\jobs\SFA\Terms and Conditions.pdf" "c:\program files\SFA"

:END
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top