This is an old revision of the document!
http://www.sevenforums.com/tutorials/71408-unidentified-networks-set-private-public.html
http://www.sevenforums.com/tutorials/43629-network-location-set-home-work-public-network.html
http://olavtvedt.blogspot.com/2013/10/unidentified-network-problems.html
http://www.pdconsec.net/windows-2012-unidentified-network-at-boot.aspx
http://blog.mpecsinc.ca/2013/08/server-2012unidentified-network-with.html
The registry key path to a Windows computer’s network profiles (wired and wireless):
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Profiles
The DWORD Category value sets type of connection:
0 = **Public** (sharing disabled) 1 = **Private** (home, sharing enabled) 2 = **Domain** (AD, sharing enabled)
The Domain connection type also needs the DWORD Managed value set to 1 and the the DWORD NameType set to 6.
DomainAuthenticated
category is set automatically. If you need to change from Private to DomainAuthenticated
, try rebooting the server.
Get-NetConnectionProfile Set-NetConnectionProfile -InterfaceIndex 18 -NetworkCategory Private
or perhaps:
Set-NetConnectionProfile -InterfaceAlias * -NetworkCategory Private
You can also see these settings in
gpedit.msc
.
Run secpol.msc
.
Restore Unidentified Networks to:
Set the Network Location Awareness service to Automatic (Delayed Start)
.