How do I send a desktop icon to all my pc's to launch a particular https: website
How do I send a desktop icon to all my pc's to launch a particular https: website
Answers (5)
You can use the below mentioned methods as per your requirement
You can also use the following VBScript
Option Explicit
Dim WshShell, strDesktopPath, objShortcutUrl
Set WshShell = CreateObject("WScript.Shell")
strDesktopPath = WshShell.ExpandEnvironmentStrings("%ALLUSERSPROFILE%\Desktop")
Set objShortcutUrl = WshShell.CreateShortcut(strDesktopPath & "\Google.lnk")
objShortcutUrl.TargetPath = "http://www.Google.com"
objShortcutUrl.IconLocation = "c:\windows\system32\shell32.dll,13"
objShortcutUrl.Save
Set WshShell = Nothing
If you want it to run automatically:
Put in the startup "C:\Program Files\Internet Explorer\iexplore" "\\share\folder\url shortcut.website" or "http://webaddress"