You can use `Get-NetConnectionProfile` to get a connection profile associated with one or more physical network adapters. A connection profile represents a [[Windows Network Location]].
# Get Network Connection Profile
```PowerShell
Get-NetConnectionProfile
```
# Set Network Connection Profile Category
```PowerShell
Set-NetConnectionProfile -InterfaceAlias Ethernet1 -NetworkCategory "Private"
```