Very promising:
Found short script to make desktop shortcuts:
set WshShell = WScript.CreateObject("WScript.Shell")
strDesktop = WshShell.SpecialFolders("Desktop")
set oShellLink = WshShell.CreateShortcut(strDesktop & "\Home Page.lnk")
oShellLink.TargetPath = "
oShellLink.WindowStyle = 1
oShellLink.Hotkey = "CTRL+SHIFT+Y"
oShellLink.IconLocation = "notepad.exe, 0"
oShellLink.Description = "Home Page"
oShellLink.WorkingDirectory = strDesktop
oShellLink.Save
After saving in Notepad with .vbs extension, double clicking file name in Win Explorer runs script and installs shortcut on desktop. Script above is based on the script found here:
No security alerts or snags of any kind. Now I'd like to find a way to tweak the script to make it an editable .url instead of an uneditable .lnk shortcut, as well as perhaps have a better graphic. Also, wonder what my options are with the "oShellLink.IconLocation = "notepad.exe, 0"" line.
This is looking good so far.