如何使用PowerShell扩展音量?

时间:2011-01-25 18:05:23

标签: powershell wmi disk

如何在远程计算机上使用powershell(我更喜欢WMI而不是powershell远程处理)来扩展音量?

操作系统是win XP sp3。

2 个答案:

答案 0 :(得分:8)

我最终得到了类似的东西:

Invoke-Command -ComputerName $compName -Credential $compCred -ScriptBlock {"rescan","select volume 2","extend" | diskpart}

我还在寻找更好的解决方案,如果有的话。

答案 1 :(得分:0)

Microsoft的存储团队编写了一组脚本来处理此问题,这些脚本也可以作为自动补救措施连接到System Insights中。

https://blogs.technet.microsoft.com/filecab/2018/06/19/creating-remediation-actions-for-system-insights/

您也可以在see my answer with PowerShell functionRemotely extend a partition using WMI