扩展分区 Windows Powershell

扩展分区 Windows Powershell

我想创建一个 Windows Powershell 脚本来通过 WMI(远程)扩展我的分区,我的主机 ID 的 IP 地址为 10.10.10.10

$pass = convertto-securestring "abc123#" -asplaintext -force

$mycred = new-object -typename System.Management.Automation.PSCredential -argumentlist "10.10.10.10\Administrator",$pass

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

我们有没有使用 Invoke-Wmimethod 的方法

相关内容