Windows 10 上“网络重置”UI 选项的等效 PowerShell 命令是什么?

Windows 10 上“网络重置”UI 选项的等效 PowerShell 命令是什么?

网络设置中有一个名为“网络重置”的选项,允许设备管理员“重置”所有网络配置,是否有等效功能,但可以通过 PowerShell 上的 CLI 完成?

看到这个图片

答案1

尝试这个:

$computerName = "COMPUTER_NAME"
$scriptBlock = {
    netsh int ip reset
}
Invoke-Command -ComputerName $computerName -ScriptBlock $scriptBlock

看起来不错。没有时间测试(这次是真的)。​​祝你好运。

答案2

Netsh int ip reset

这将重置您的 tcpip 堆栈。应该很容易为其构建 PS 包装器。我没有时间。但也许 gpt 有。

相关内容