Problem:
Cannot change the network connection profile from public to private from the GUI because the option does not exist in certain scenarios.
Solution:
1. Open PowerShell as Admin
2. Get-NetConnectionProfile to show all available network profiles (only shows enabled adapters).
4. Set-NetConnectionProfile -Name "nameofnetworkprofile" -NetworkCategory Private
5. or
6. Set-NetConnectionProfile -Name "nameofnetworkprofile" -NetworkCategory Public
7. Done
π½