Método Shell.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
Shell.EjectPC()
Shell.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.
Ejemplos
En el ejemplo siguiente se muestra EjectPC en uso. Se muestra un uso adecuado para 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 |
|