我的代码需要帮助。我正在尝试制作一个执行两件事的脚本:首先,它在用户桌面上创建快捷方式图标。其次,当用户双击该图标时,会出现一个框,询问他们是否要重新启动计算机,让他们可以选择单击“确定”重新启动以“取消”以取消命令。将脚本输入命令提示符时,它只执行重新启动计算机选项。任何帮助将不胜感激。这是我的脚本:
Dim answer
' ********* Main processing section **********
' Verify that the user wants to open the Turn Off Computer dialog
Set wshObject = WScript.CreateObject("WScript.Shell")
desktopFolder = wshObject.SpecialFolders("Desktop")
Set myShortcut = wshObject.CreateShortcut(desktopFolder & "\\Shortcut.lnk")
myShortcut.TargetPath = "%windir%\Shortcut.exe"
myShortcut.Save()
answer = MsgBox("The Turn Off Computer dialog will be opened.", 1, "Turn off Computer Script!")
If answer = 1 then ' User clicked on OK
Initiate_Logoff()
End if
' *********** Procedures go here *************
' Open the Windows Turn Off Computer dialog
Function Initiate_Logoff()
shellApp.ShutdownWindows
End Function