General discussion
Thread display: Collapse - |
All Comments
Start or search
Create a new discussion
If you're asking for technical help, please be sure to include all your system info, including operating system, model number, and any other specifics related to the problem. Also please exercise your best judgment when posting in the forums--revealing personal information such as your e-mail address, telephone number, and address is not recommended.
Login Script Trouble
******************************************
@echo off
REM Drive Mappings*****
net use * /delete /y
echo Application mapping
NET USE M: \\Rockland_pdc\apps
echo Department mapping
NET USE G: \\Rockland_pdc\Department
if "%os%" == "windows_nt" goto nt4
echo Default User mapping WIN 2000*********
net use s: \\rockland_pdc\users\%username%
:nt4
echo Default User mapping Win NT***********
NET USE R: \\Rockland_pdc\USERS
SUBST U: R:\%username%
NET USE R: /DELETEEnd Script