gpt4 book ai didi

powershell - 如何在 Powershell 2.0 中获取驱动器号列表

转载 作者:行者123 更新时间:2023-12-04 20:31:15 26 4
gpt4 key购买 nike

我试图在下拉菜单中获取驱动器号列表。我目前正在使用下面的代码,它在 Windows 10 中运行良好,但在 Windows 7 中根本不起作用。

     $Drive_Letters = Get-WmiObject Win32_LogicalDisk
ForEach ($Drives in $Drive_Letters.DeviceID) { $Dest_Drive_Box.Items.Add($Drives) }

在 Win 7 中,我尝试将代码调整为此...
     $Drive_Letters = Get-WmiObject Win32_LogicalDisk | Select-Object DeviceID
ForEach ($Drives in $Drive_Letters) { $Dest_Drive_Box.Items.Add($Drives) }

但现在它在 Win 7 和 10 中为每个驱动器号显示“@DeviceID=C:}”、“@DeviceID=D:}”等。我只需要显示“C:”、“D:”等。

谢谢!

最佳答案

Get-PSDrive

这将返回当前 session 中映射的所有驱动器。 Name属性包含驱动器号。

只捕获驱动器号:
(Get-PSDrive).Name -match '^[a-z]$'

在 PSv2 中测试工作:
Get-PSDrive | Select-Object -ExpandProperty 'Name' | Select-String -Pattern '^[a-z]$'

关于powershell - 如何在 Powershell 2.0 中获取驱动器号列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45965738/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com