Método IShellDispatch.EjectPC
Expulsa el equipo de su estación de acoplamiento. Esto es lo mismo que hacer clic en el menú Inicio y seleccionar Expulsar PC, si el equipo admite este comando.
Sintaxis
IShellDispatch.EjectPC()
IShellDispatch.EjectPC()
Parámetros
Este método no tiene parámetros.
Valor devuelto
JScript
Este método no devuelve ningún valor.
VB
Este método no devuelve ningún valor.
Comentarios
Este método se implementa y se accede a él a través del método Shell.EjectPC .
Ejemplos
En los ejemplos siguientes se muestra el uso de EjectPC en JScript, VBScript y 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
Requisitos
Requisito | Value |
---|---|
Cliente mínimo compatible |
Windows 2000 Professional, Windows XP [solo aplicaciones de escritorio] |
Servidor mínimo compatible |
Windows 2000 Server [solo aplicaciones de escritorio] |
Encabezado |
|
IDL |
|
Archivo DLL |
|