Thanks to you both! [Big Grin] I had a bad server name in the .ico path. I don't know how many times I looked at that and still did not see it. Error code returned it.

Sealeopard, you were correct about not wanting to place the icon file on root and about the permissions problem on the %ALLUSERSPROFILE%. I found command variable on TechNet in an article called Command Shell OVerview. I used it because I did not see a good way to get past defining the specific user directory. Now that I look again, I see a %USERPROFILE% (not sure how I missed it the first time), so I changed the code to:
code:
if $ClientType="Windows 2000 Professional"
if exist("%USERPROFILE%\IP3.ico")=0
? "Copying IP Icon to local Workstation."
Copy "\\BSC1App01\NetLogon\IP3.ico" "%USERPROFILE%\IP3.ico"
? ''+@ERROR+' - '+@SERROR
endif
if exist("%USERPROFILE%\Desktop\Welcome to Interactive Practice.url")=0
? "Copying Shortcut for the Interactive Practice to your Desktop."
Copy "\\BSC1App01\NetLogon\Welcome to Interactive Practice.url" "%USERPROFILE%\Desktop\Welcome to Interactive Practice.url"
? ''+@ERROR+' - '+@SERROR
endif
endif

That seemed to work very well. Any pointers appreciated. Thanks again.