Windows Active Network Type

Wiki.TerraBase.info
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Here's a frustrating issue: Windows never seems to get the type of network it is connected to in the Network Sharing Center / Network Discovery. It can be Public, Private, and Domain.

To fix it, do the following

  • Run PowerShell as Administrator
  • To get the name of the Interface: get-netconnectionprofile
  • To set the type of network (public, private, etc.): set-netconnectionprofile -NetworkCategory Private -InterfaceIndex WhatEverIndexNumber
    • OR;
      • set-netconnectionprofile -NetworkCategory Private -InterfaceAlias "WhatEverAliasName"
      • ...etc., but InterfaceIndex is better because it's just a number, whereas the InterfaceAlias might have characters that cause issues on the command line.

Sources;

Special Note: It often times doesn't get the name of the Interface / "Active Network" correct either. In Network connections the same item is referred to as "Status". In PowerShell it refers to it as Name. Woof! Sadly, the "Name" cannot be set.