'**********Ask user for permission********** msgBoxText = "This will place an Innovative Solutions Support shortcut on your desktop." + CRLF + _ "Click OK to continue." msgBoxTitle = "Process Druid" result = MsgBox(msgBoxText, 1+32+4096, msgBoxTitle) If result = 2 Then MsgBox "Cancelled!", 64+4096, msgBoxTitle WScript.Quit End If If result = 7 Then MsgBox "Cancelled!", 64+4096, msgBoxTitle WScript.Quit End If '**********Ask user for permission********** Dim WSHShell Set WSHShell = WScript.CreateObject("WScript.Shell") strLocalFolder = WSHShell.SpecialFolders("Desktop") Set shortCut = WSHSHell.CreateShortcut(strLocalFolder & "\Innovative Support.url") shortCut.TargetPath = "http://www.innohost.com/files/helpdesk.exe" shortCut.Save