答案1
尝试这个:
$computerName = "COMPUTER_NAME"
$scriptBlock = {
netsh int ip reset
}
Invoke-Command -ComputerName $computerName -ScriptBlock $scriptBlock
看起来不错。没有时间测试(这次是真的)。祝你好运。
答案2
Netsh int ip reset
这将重置您的 tcpip 堆栈。应该很容易为其构建 PS 包装器。我没有时间。但也许 gpt 有。