PowerShell/Scripts/list-wifi.ps1
2022-10-24 15:51:54 +02:00

21 lines
362 B
PowerShell

<#
.SYNOPSIS
Lists WIFI
.DESCRIPTION
This PowerShell script lists the WIFI networks.
.EXAMPLE
PS> ./list-wifi
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
& netsh wlan show profile
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}