【问题标题】:Move network interface to "Domain network"将网络接口移动到“域网络”
【发布时间】:2018-09-25 14:31:36
【问题描述】:

是否可以将所有网络接口移动到 Windows Server 2008R2 上的“域网络”?

安装后默认情况下,我有一个在域中,接下来两个在公共网络中,我希望它们都只在域网络中

【问题讨论】:

    标签: powershell windows-server-2008 windows-server-2008-r2


    【解决方案1】:

    您可以尝试以下方法:

    1. 获取要更改的网络接口的索引号:

      Get-NetConnectionProfile
      
    2. 改成DomainAuthenticated

      Set-NetConnectionProfile -InterfaceIndex <InterfaceIndex number> -NetworkCategory DomainAuthenticated
      

    【讨论】:

    • Server 2008 上不存在这些 cmdlet。我相信它们是在 2012R2 中引入的。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2013-08-05
    • 2016-11-26
    • 2010-09-26
    • 1970-01-01
    • 2013-01-06
    相关资源
    最近更新 更多