Méthode Shell.EjectPC
Éjecte l’ordinateur de sa station d’accueil. Cela revient à cliquer sur le menu Démarrer et à sélectionner Éjecter le PC, si votre ordinateur prend en charge cette commande.
Syntaxe
Shell.EjectPC()
Shell.EjectPC()
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.
Exemples
L’exemple suivant montre EjectPC en cours d’utilisation. Une utilisation correcte est indiquée pour JScript, VBScript et Visual Basic.
Jscript:
<script language="JScript">
function fnShellEjectPCJ()
{
var objShell = new ActiveXObject("shell.application");
objShell.EjectPC();
}
</script>
Vbscript:
<script language="VBScript">
function fnShellEjectPCVB()
dim objShell
set objShell = CreateObject("shell.application")
objShell.EjectPC
set objShell = nothing
end function
</script>
Visual Basic :
Private Sub fnShellEjectPCVB()
Dim objShell As Shell
Set objShell = New Shell
objShell.EjectPC
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 |
|