I am having trouble deleting an icon from the desktop. We use roaming user profiles and I can't seem to find a variable that works for the username. Here is the code I am currently using:

If EXIST ("C:\Documents and Settings\%username%\Desktop\Syteline.lnk") = 0
DEL "C:\Documents and Settings\%username%\Desktop\Syteline.lnk"
Endif

I have tried %username% and @userid. Neither have worked. What variable can should I be using? Any help would be greatly appreciated. Thanks.

Gordon