Skip to content

Instantly share code, notes, and snippets.

@MrWyss-MSFT
Created October 25, 2023 09:01
Show Gist options
  • Select an option

  • Save MrWyss-MSFT/ece83e4d0d14a74331d250e4ba446e96 to your computer and use it in GitHub Desktop.

Select an option

Save MrWyss-MSFT/ece83e4d0d14a74331d250e4ba446e96 to your computer and use it in GitHub Desktop.
Get-WP3Capabilities
($(netsh wlan show drivers) -match "WPA3-*").trimstart() -split "`n" | ForEach-Object { $auth, $cipher = $_ -split ' +'; [PSCustomObject]@{ 'Security Mode' = $auth; 'Encryption Mode' = ($cipher -join ' ') } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment