Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

applicationi shortcut

Status
Not open for further replies.

kingkev75

Technical User
Joined
Aug 1, 2007
Messages
2
Location
CA
How can I create add to my users logon script to create a shortcut to a shared application on the login'in users desktop??

Thanks in advance.
 
Don't know if can modify this script

Set objShell = WScript.CreateObject("WScript.Shell")
strDesktopFolder = objShell.SpecialFolders("AllUsersDesktop")
Set objShortCut = objShell.CreateShortcut(strDesktopFolder & _
"\IIS Manager.lnk")
objShortCut.TargetPath = "%SystemRoot%\System32\Inetsrv\iis.msc"
objShortCut.Description = "Run the Internet Information Services Manager."
objShortCut.HotKey = "Ctrl+Shift+I"
objShortCut.Save
 
Sorry I am newbie. I am not sure if that answers my question. Can you explain?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top