Metodo IShellDispatch.EjectPC
Espelle il computer dalla sua stazione di ancoraggio. Equivale a fare clic sul menu Start e selezionare Eject PC (Eject PC), se il computer supporta questo comando.
Sintassi
IShellDispatch.EjectPC()
IShellDispatch.EjectPC()
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.EjectPC .
Esempio
Negli esempi seguenti viene illustrato l'uso di EjectPC in JScript, VBScript e 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
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 |
|