Question : Internet link on desktop using GPO in Server 2003

Adding internet link to desktop with GPO.
Windows Server 2003 with client xp environment.
I looked on these boards and found a solution.  It did not work for me however.

Here is what I did --

I created a GPO and put in a startup batch script (Below) which I applied to my Test_OU.  I then did a gpupdate /force on one of my test computers.  Rebooted and I have no icon.  Where can I check for error messages?  

*** Batch Script***
net use z: \\server\share
c:
cd\
if exist %userprofile%\desktop\MSDS_Solutions-Login.lnk goto end
xcopy z:\desktop_links\MSDS_Solutions-Login.lnk %userprofile%\desktop
net use z: /delete
:end

Answer : Internet link on desktop using GPO in Server 2003

I'd recommend modifying your script like so:

@echo off

if exist "%userprofile%\desktop\MSDS_Solutions-Login.lnk" goto :EOF
xcopy "\\server\share\desktop_links\MSDS_Solutions-Login.lnk" "%userprofile%\desktop"

Random Solutions  
 
programming4us programming4us