Created
October 25, 2023 09:01
-
-
Save MrWyss-MSFT/ece83e4d0d14a74331d250e4ba446e96 to your computer and use it in GitHub Desktop.
Get-WP3Capabilities
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ($(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