I have my login script run during my gpo processing. For some users it seems to work fine but not for my accounting users. Below is the script
\\fco-s001\sysvol\fco.com\scripts\pushprinterconnections.exe
rem ******mappings for accounting****************************
ifmember "fco accounting"
if not errorlevel 1 goto domain admin
net use w: \\fco-s001\apps\peachw
net use v: \\fco-s001\quickbooks
rem ****** drive mappings for administrators*********************
omain Admin
ifmember "domain admins"
if not errorlevel 1 goto common
net use s: \\fco-s001\d$
:common
net use x: \\fco-s001\fco\fco-users\%username%
net use y: \\fco-s001\fco\fco-apps
net use z: \\fco-s001\fco\fco-company
:END
Exit
I don’t receive any errors anywhere in log files or anywhere else I have seen.
Here are the things I have tried in order to solve this.
1. Enabled port fast on the switches.
2. Enabled slow ling processing.
3. Set dns to static entry.
Any help would be great.
\\fco-s001\sysvol\fco.com\scripts\pushprinterconnections.exe
rem ******mappings for accounting****************************
ifmember "fco accounting"
if not errorlevel 1 goto domain admin
net use w: \\fco-s001\apps\peachw
net use v: \\fco-s001\quickbooks
rem ****** drive mappings for administrators*********************
ifmember "domain admins"
if not errorlevel 1 goto common
net use s: \\fco-s001\d$
:common
net use x: \\fco-s001\fco\fco-users\%username%
net use y: \\fco-s001\fco\fco-apps
net use z: \\fco-s001\fco\fco-company
:END
Exit
I don’t receive any errors anywhere in log files or anywhere else I have seen.
Here are the things I have tried in order to solve this.
1. Enabled port fast on the switches.
2. Enabled slow ling processing.
3. Set dns to static entry.
Any help would be great.