IShellDispatch.ShutdownWindows 方法

显示“ 关闭 Windows ”对话框。 这与单击“ 开始 ”菜单并选择“ 关闭”相同。

语法

IShellDispatch.ShutdownWindows()

IShellDispatch.ShutdownWindows()

参数

此方法没有任何参数。

返回值

JScript

此方法不返回值。

VB

此方法不返回值。

备注

此方法通过 Shell.ShutdownWindows 方法实现和访问。

示例

以下示例演示了在 JScript、VBScript 和 Visual Basic 中使用 ShutdownWindows

Jscript:

<script language="JScript">
    function fnShellShutdownWindowsJ()
    {
        var objShell = new ActiveXObject("shell.application");
        
        objshell.ShutdownWindows();
    }
</script>

VBScript:

<script language="VBScript">
    function fnShellShutdownWindowsVB()
        dim objShell
        
        set objShell = CreateObject("shell.application")
        objshell.ShutdownWindows

        set objShell = nothing
    end function
 </script>

Visual Basic:

Private Sub fnShellShutdownWindowsVB()
    Dim objShell As Shell
    
    Set objShell = New Shell
    objshell.ShutdownWindows

    Set objShell = Nothing
End Sub

要求

要求
最低受支持的客户端
Windows 2000 专业版、Windows XP [仅限桌面应用]
最低受支持的服务器
Windows 2000 Server [仅限桌面应用]
标头
Shldisp.h
IDL
Shldisp.idl
DLL
Shell32.dll (版本 4.71 或更高版本)