Shell.EjectPC method
Ejects the computer from its docking station. This is the same as clicking the Start menu and selecting Eject PC, if your computer supports this command.
Syntax
Shell.EjectPC()
Shell.EjectPC()
Parameters
This method has no parameters.
Return value
JScript
This method does not return a value.
VB
This method does not return a value.
Examples
The following example shows EjectPC in use. Proper usage is shown for JScript, VBScript, and 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
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows 2000 Professional, Windows XP [desktop apps only] |
Minimum supported server |
Windows 2000 Server [desktop apps only] |
Header |
|
IDL |
|
DLL |
|