PowerShell 技能连载 - 将网络连接模式从私有网络切到公有网络(反之亦然)
Starting with Windows Server 2012 R2 and Windows 8.1, PowerShell ships with many useful cmdlets for client and server configuration. This comes handy as some settings can no longer be controlled via UI.
从 Windows Server 2012 R2 和 Windows 8.1 开始,随着 PowerShell 发布了许多有用的客户端和服务器配置 cmdlet。这些 cmdlet 十分趁手,因为一些设置可以不再通过 UI 来控制。
例如,要改变网络的类型,只需要以管理员身份运行以下代码:
1 | PS> Get-NetConnectionProfile |
PowerShell 技能连载 - 将网络连接模式从私有网络切到公有网络(反之亦然)