mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-07 16:44:22 +01:00
21 lines
366 B
PowerShell
Executable File
21 lines
366 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Lists WIFI
|
|
.DESCRIPTION
|
|
This PowerShell script lists the WIFI networks.
|
|
.EXAMPLE
|
|
PS> ./list-wifi.ps1
|
|
.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
|
|
}
|