I'm sure there's a php script out there which could get the operating system of a user and I'm sure you could use
fopen(),
fwrite(), and
fclose() to create the shortcut. I'm not sure it that's actually works, but you put the following code into notepad:
CODE
start http://mysite.somehost.com/
and save it as an open.exe and run it and if memory serves this should act as a shortcut. I'm not promising that it will work, it's just something I remember reading

Just read Command Prompt help guide and now I'm 90% sure it will.
QUOTE(beeseven)
C:\Documents and Settings\%USERNAME%\Desktop
It's easier than that to find out the path to a Windows user's desktop. It's
%USERPROFILE%\Desktop. This takes out the trouble of finding out the user's username which would probably require ActiveX.
Reply