Skip to content

Instantly share code, notes, and snippets.

@Serat00l951
Created August 20, 2019 05:27
Show Gist options
  • Save Serat00l951/a15694cfd6a2b33eb7912080e2bd6993 to your computer and use it in GitHub Desktop.
Save Serat00l951/a15694cfd6a2b33eb7912080e2bd6993 to your computer and use it in GitHub Desktop.
Switch the network adapter status
$adapter_name="Ethernet"
if ((Get-NetAdapter $adapter_name).InterfaceOperationalStatus -eq $true) {Disable-NetAdapter -Name $adapter_name -Confirm:$false} else {Enable-NetAdapter -Name $adapter_name -Confirm:$false}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment