I just edited something you had sent me before: This works nice.
On Error resume next
SET fso = Wscript.CreateObject("Scripting.FileSystemObject")
SET WshShell = WScript.CreateObject("WScript.Shell")
'Desktop shortcut for ADP supervisor
strFavs = WshShell.SpecialFolders("AllUsersStartup")
strshortcut = strFavs & "\Enterprise eTime.url"
If Not fso.FileExists(strshortcut) Then
SET oUrlLink = WshShell.CreateShortcut(strshortcut)
oUrlLink.TargetPath = "
oUrlLink.Save
End If
'Desktop shortcut for ADP time sheet
'Note: to create the icon for all users use the Special Folder AllUsersDesktop
strFavs = WshShell.SpecialFolders("AllUsersStartup")
strshortcut2 = strFavs & "\Quick Time Stamp.url"
If Not fso.FileExists(strshortcut2) Then
SET oUrlLink = WshShell.CreateShortcut(strshortcut2)
oUrlLink.TargetPath = "
oUrlLink.Save
End If