Partager via


Méthode IShellDispatch.ShutdownWindows

Affiche la boîte de dialogue Arrêter Windows . Cela revient à cliquer sur le menu Démarrer et à sélectionner Arrêter.

Syntaxe

IShellDispatch.ShutdownWindows()

IShellDispatch.ShutdownWindows()

Paramètres

Cette méthode n’a aucun paramètre.

Valeur retournée

JScript

Cette méthode ne retourne pas de valeur.

VB

Cette méthode ne retourne pas de valeur.

Notes

Cette méthode est implémentée et accessible via la méthode Shell.ShutdownWindows .

Exemples

L’exemple suivant montre l’utilisation de ShutdownWindows dans JScript, VBScript et 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

Spécifications

Condition requise Valeur
Client minimal pris en charge
Windows 2000 Professionnel, Windows XP [applications de bureau uniquement]
Serveur minimal pris en charge
Windows 2000 Server [applications de bureau uniquement]
En-tête
Shldisp.h
IDL
Shldisp.idl
DLL
Shell32.dll (version 4.71 ou ultérieure)