How to Change a Windows Computer Network Adapter from Public to Private using Settings App or PowerShell Command Line
When setting up a Windows 11 computer, the network profile is an essential setting that determines how your device interacts with other devices on the network.
If you have issues scanning with your scanner or connecting to server or network resources while your network adapter is set to PUBLIC you will often have issues because only PRIVATE networks allow you to communicate with other network devices.
Windows automatically assigns a network as either “Public” or “Private” based on the connection type. However, there are times when you may need to change this setting manually. This guide will walk you through the steps to change a Windows network adapter from Public to Private.
Why Change a Network from Public to Private?
By default, Windows 10 assigns new networks as Public to enhance security. This setting restricts network discovery and sharing, making it safer for use in public places like coffee shops and airports. However, if you’re on a trusted home or office network, you might want to change the network profile to Private to enable file sharing and device discovery.
Method 1 to Change Network Adapter Privacy, use the Settings App
- Click on the Start Menu, then select Settings (or press
Win + I
). - Navigate to Network & Internet.
- Depending on your connection type:
- If you’re using Wi-Fi, click on Wi-Fi, then select your connected network.
- If you’re using Ethernet, click on Ethernet, then select your connected network.
- Under Network profile, select Private.
Method 2 to Change Network Settings, use the Windows Control Panel
- Open the Control Panel (Press
Win + R
, typecontrol
, and press Enter). - Navigate to Network and Sharing Center.
- Find your active network connection and click on it.
- In the new window, click on Properties.
- Under the Network Profile section, select Private.
Method 3 to Change Network From Private to Public is to use PowerShell Commands
- Right-click on the Start Menu and select PowerShell (Admin).
- Type the following command and press Enter:
Get-NetConnectionProfile
- This command will display the current network profiles and their settings.
- To change it to Private, type the following command:
Set-NetConnectionProfile -Name "NetworkName" -NetworkCategory Private
- (Replace “NetworkName” with your actual network name.)
- Press Enter, and your network will be set to Private.