The logon script I have been developing has been running perfectly on the test system doing everything I need it to do. When I tested it on three other systems I only get a partial read of the file.
CODE
ECHO Start LogOnScript.bat >>C:\bravo.txt
date/t >>C:\bravo.txt
time/t >>C:\bravo.txt
ECHO run LogOn1.vbs >>C:\bravo.txt
cscript \\Server\SYSVOL\HOME.COM\Scripts\LogOn1.vbs >>C:\bravo.txt
start /b Outlook.exe /importprf \\Server\Users\PRF\Mail.PRF
Echo script End >>C:\bravo.txt
Echo ********** >>C:\bravo.txt
The script file maps network drives, adds printers, etc.
The next command loads an Outlook profile. I get a log file output to the local system to confirm the whole script ran.
On the other 3 systems, only the Outlook profile portion runs and I get no log file at all, the script file never gets called.
If I copy the .bat file to the other systems and run it locally I get the same result as logging on. If I open a command prompt and manually type the command to run the script it works mapping the drives, etc..
All systems are on the domain and are running WinXp pro. The server is Win2K.
Any help would be appreciated.
CODE
ECHO Start LogOnScript.bat >>C:\bravo.txt
date/t >>C:\bravo.txt
time/t >>C:\bravo.txt
ECHO run LogOn1.vbs >>C:\bravo.txt
cscript \\Server\SYSVOL\HOME.COM\Scripts\LogOn1.vbs >>C:\bravo.txt
start /b Outlook.exe /importprf \\Server\Users\PRF\Mail.PRF
Echo script End >>C:\bravo.txt
Echo ********** >>C:\bravo.txt
The script file maps network drives, adds printers, etc.
The next command loads an Outlook profile. I get a log file output to the local system to confirm the whole script ran.
On the other 3 systems, only the Outlook profile portion runs and I get no log file at all, the script file never gets called.
If I copy the .bat file to the other systems and run it locally I get the same result as logging on. If I open a command prompt and manually type the command to run the script it works mapping the drives, etc..
All systems are on the domain and are running WinXp pro. The server is Win2K.
Any help would be appreciated.