$wshshell = New-Object -ComObject WScript.Shell $lnk = $wshshell.CreateShortcut(”$home\Desktop\TeamSite.lnk”) #places and names shortcut $lnk.WorkingDirectory = “http://itright.com” # Working Directory of Shortcut $lnk.TargetPath = "http://itright.com" # Path shortcut directs you to $lnk.Description = “pcms Team Site.Link” #description viewed under properties $lnk.Hotkey = "CTRL+SHIFT+X" $lnk.WindowStyle = 3 $lnk.Save()