I'm wishing to send a group email that will install a shortcut to the company website with a defined icon, on employees desktops. I'm currently using VBScript to create the shortcut:
Set WshShell = CreateObject("WScript.Shell"
strDesktopPath = WshShell.SpecialFolders("Desktop"
Set objShortcutUrl = WshShell.CreateShortcut(strDesktopPath & "\Virtual Agency.url"
objShortcutUrl.TargetPath = "objShortcutUrl.Save
But how can I embed deploy the appropriate icon and set the shortcut to use this?
Set WshShell = CreateObject("WScript.Shell"
strDesktopPath = WshShell.SpecialFolders("Desktop"
Set objShortcutUrl = WshShell.CreateShortcut(strDesktopPath & "\Virtual Agency.url"
objShortcutUrl.TargetPath = "objShortcutUrl.Save
But how can I embed deploy the appropriate icon and set the shortcut to use this?