gpt4 book ai didi

powershell - 挂载 VHD 并获取驱动器号

转载 作者:行者123 更新时间:2023-12-01 13:20:29 27 4
gpt4 key购买 nike

我希望使用 Powershell 获取 VHD 安装的驱动器号。我可以使用以下 cmdlet 挂载 VHD:

Mount-VHD -Path d:/tmp.vhdx

安装工作正常,但是当我尝试获取驱动器号时:
Get-DiskImage -ImagePath d:\tmp.vhdx | Get-Disk | Get-Partition | Get-Volume ).DriveLetter

它失败并出现以下错误:

Get-DiskImage : Invalid property



我相信 Get-DiskImage适用于 ISO,但不适用于 VHD?你能帮我获取它的 VHD。

最佳答案

这种方式对我有用:

$DriveLetter = (Mount-VHD -Path "G:\YourVHDX.vhdx" -PassThru | Get-Disk | Get-Partition | Get-Volume).DriveLetter

然后 Write-Output $DriveLetter将显示驱动器号。

关于powershell - 挂载 VHD 并获取驱动器号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50226741/

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