PowerShell/scripts/list-wifi.ps1

21 lines
366 B
PowerShell
Raw Normal View History

2024-10-01 15:11:03 +02:00
<#
2022-10-24 15:51:54 +02:00
.SYNOPSIS
Lists WIFI
.DESCRIPTION
This PowerShell script lists the WIFI networks.
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./list-wifi.ps1
2022-10-24 15:51:54 +02:00
.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
}