Méthode Shell.ShutdownWindows
Affiche la boîte de dialogue Arrêter Windows . Cela revient à cliquer sur le menu Démarrer et à sélectionner Arrêter.
Syntaxe
iRetVal = Shell.ShutdownWindows()
Shell.ShutdownWindows() As Integer
Paramètres
Cette méthode n’a aucun paramètre.
Exemples
L’exemple suivant montre ShutdownWindows en cours d’utilisation. Une utilisation correcte est indiquée pour 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
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 |
|
IDL |
|
DLL |
|