Visual-Time-Machine/GetNetworkCostType.ps1

7 lines
379 B
PowerShell

[void][Windows.Networking.Connectivity.NetworkInformation,Windows,ContentType=WindowsRuntime]
$connectionProfile=[Windows.Networking.Connectivity.NetworkInformation]::GetInternetConnectionProfile()
if (!$connectionProfile) { return "Null" };
$connectionCost=$connectionProfile.GetConnectionCost()
$networkCostType=$connectionCost.NetworkCostType
Write-Output $networkCostType