Windows server 2012 Domain Controller two NICs with different network profiles

windows

I have a Windows server 2012 Domain Controller with two NICs, one in an internal network and another on an external network. How can I force the second NIC to be in a public profile?

http://i.stack.imgur.com/FfJka.png

Best Answer

Look in here:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Profiles

Change the Category key to the appropriate setting.

Public = 0
Home = 1
Work = 2

Powershell method (probably more reliable):

Get-NetConnectionProfile
Set-NetConnectionProfile -InterfaceIndex # -NetworkCategory Public
Related Topic