/build/static/layout/Breadcrumb_cap_w.png

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


0 Comments   [ + ] Show comments

Answers (5)

Answer Summary:
You can use the below mentioned methods as per your requirement
Posted by: jagadeish 11 years ago
Red Belt
2

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

Posted by: dugullett 11 years ago
Red Belt
1

Not sure of your deployment method, but you can create the shortcut on your desktop. Then copy that shorcut to a share then run

@echo off
copy  "\\share\folder\url shortcut.website" "%allusersprofile%\desktop\url shortcut.website"
Posted by: SMal.tmcc 11 years ago
Red Belt
1

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"

Posted by: Timanator 11 years ago
Third Degree Blue Belt
1

You can also use Group Policy to publish this as a Bookmark in Internet Explore. And /or use login scripts to copy the shortcut over from a share.

Posted by: piyushnasa 11 years ago
Red Belt
1

I will say that Jagadeish has written a script which is really good to use.

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

View more:

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ