$ gpresult /r /scope:computer
$ Get-NetAdapter -Name Ethernet
$ Get-NetAdapter | ft Name, Status, Linkspeed, VlanID
$ Get-NetAdapter | ft Name, DriverName, DriverVersion, DriverInformation, DriverFileName
$ Disable-NetAdapter -Name "Wireless Network Connection"
$ Enable-NetAdapter -Name "Wireless Network Connection"
$ Get-NetAdapter -Name "Local Area Connection" | Get-NetIPAdapter
$ Test-Connection google.com
$ Test-NetConnection -ComputerName www.google.com
$ Test-NetConnection www.google.com -TraceRoute
$ Resolve-DnsName www.google.com
$ Resolve-DnsName www.google.com Type MX -Server 8.8.8.8
$ Get-NetTCPConnection
$ Get NetTCPConnection -State Established
$ Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode - Register "$($_.InstallLocation)\AppXManifest.xml"}