PowerShell 技能连载 - 弹出 CD 驱动器

以下是一个用 WMI 弹出 CD 驱动器的小函数。它首先向 WMI 请求所有的 CD 驱动器,然后使用 explorer 对象模型导航到该驱动器并调用它的 “Eject” 上下文菜单项。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
function Eject-CD
{
$drives = Get-WmiObject Win32_Volume -Filter "DriveType=5"
if ($drives -eq $null)
{
Write-Warning "Your computer has no CD drives to eject."
return
}
$drives | ForEach-Object {
(New-Object -ComObject Shell.Application).Namespace(17).ParseName($_.Name).InvokeVerb("Eject")
}
}

Eject-CD

PowerShell 技能连载 - 弹出 CD 驱动器

http://blog.vichamp.com/2017/04/21/ejecting-cd-drive/

作者

吴波

发布于

2017-04-21

更新于

2022-07-06

许可协议

评论