Metodo IShellDispatch.ShutdownWindows
Visualizza la finestra di dialogo Arresta finestre . Equivale a fare clic sul menu Start e selezionare Arresta.
Sintassi
IShellDispatch.ShutdownWindows()
IShellDispatch.ShutdownWindows()
Parametri
Questo metodo non presenta parametri.
Valore restituito
JScript
Questo metodo non restituisce valori.
VB
Questo metodo non restituisce valori.
Commenti
Questo metodo viene implementato e accessibile tramite il metodo Shell.ShutdownWindows .
Esempio
L'esempio seguente illustra l'uso di ShutdownWindows in 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
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato |
Windows 2000 Professional, Windows XP [solo app desktop] |
Server minimo supportato |
Windows 2000 Server [solo app desktop] |
Intestazione |
|
IDL |
|
DLL |
|