Skip to content

Instantly share code, notes, and snippets.

@nijave
Created June 23, 2019 14:56
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save nijave/d657fb4cdb518286942f6c2dd933b472 to your computer and use it in GitHub Desktop.
Save nijave/d657fb4cdb518286942f6c2dd933b472 to your computer and use it in GitHub Desktop.
Powershell check if on metered network
[void][Windows.Networking.Connectivity.NetworkInformation, Windows, ContentType = WindowsRuntime]
$cost = [Windows.Networking.Connectivity.NetworkInformation]::GetInternetConnectionProfile().GetConnectionCost()
$cost.ApproachingDataLimit -or $cost.OverDataLimit -or $cost.Roaming -or $cost.BackgroundDataUsageRestricted -or ($cost.NetworkCostType -ne "Unrestricted")
@nijave
Copy link
Author

nijave commented Jun 23, 2019

Returns true if the current network connection is limited/metered

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment