Método IShellDispatch.ShutdownWindows
Exibe a caixa de diálogo Desligar Windows . Isso é o mesmo que clicar no menu Iniciar e selecionar Desligar.
Sintaxe
IShellDispatch.ShutdownWindows()
IShellDispatch.ShutdownWindows()
Parâmetros
Esse método não tem parâmetros.
Valor retornado
JScript
Esse método não retorna um valor.
VB
Esse método não retorna um valor.
Comentários
Esse método é implementado e acessado por meio do método Shell.ShutdownWindows .
Exemplos
O exemplo a seguir mostra o uso de ShutdownWindows em JScript, VBScript e Visual Basic.
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
Requisitos
Requisito | Valor |
---|---|
Cliente mínimo com suporte |
Windows 2000 Professional, Windows XP [somente aplicativos da área de trabalho] |
Servidor mínimo com suporte |
Windows 2000 Server [somente aplicativos da área de trabalho] |
Cabeçalho |
|
IDL |
|
DLL |
|