Aug 1, 2007 #1 kingkev75 Technical User Aug 1, 2007 2 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.
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.
Aug 2, 2007 #2 pytchley Technical User Jan 20, 2003 123 GB 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 Upvote 0 Downvote
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
Aug 2, 2007 Thread starter #3 kingkev75 Technical User Aug 1, 2007 2 CA Sorry I am newbie. I am not sure if that answers my question. Can you explain? Upvote 0 Downvote