如何在远程计算机上使用powershell(我更喜欢WMI而不是powershell远程处理)来扩展音量?
操作系统是win XP sp3。
答案 0 :(得分:8)
我最终得到了类似的东西:
Invoke-Command -ComputerName $compName -Credential $compCred -ScriptBlock {"rescan","select volume 2","extend" | diskpart}
我还在寻找更好的解决方案,如果有的话。
答案 1 :(得分:0)
Microsoft的存储团队编写了一组脚本来处理此问题,这些脚本也可以作为自动补救措施连接到System Insights中。
您也可以在see my answer with PowerShell function的Remotely extend a partition using WMI处