PoshCode Archive  Artifact [6b4ef00fb8]

Artifact 6b4ef00fb839c08c495247864fbdb86ccf3628df6e20e54702558acd5f637546:

  • File Get-WifiNetwork.ps1 — part of check-in [3d5cbec8e7] at 2018-06-10 13:54:54 on branch trunk — Get-WifiNetwork – return the parsed output of netsh wlan show network mode=bssid in psobject form. Does exactly what it says on the tin. Requires Vista/2008 or higher, or XP SP3 with a hotfix (I can’t recall which one, sorry.) (user: Oisin Grehan size: 1125)

# encoding: ascii
# api: powershell
# title: Get-WifiNetwork
# description: Get-WifiNetwork – return the parsed output of netsh wlan show network mode=bssid in psobject form. Does exactly what it says on the tin. Requires Vista/2008 or higher, or XP SP3 with a hotfix (I can’t recall which one, sorry.)
# version: 0.1
# type: function
# author: Oisin Grehan
# license: CC0
# function: Get-WifiNetwork
# x-poshcode-id: 5406
# x-archived: 2015-05-10T05:04:30
# x-published: 2015-09-07T12:37:00
#
#
function Get-WifiNetwork {
 end {
  netsh wlan sh net mode=bssid | % -process {
    if ($_ -match '^SSID (\d+) : (.*)$') {
        $current = @{}
        $networks += $current
        $current.Index = $matches[1].trim()
        $current.SSID = $matches[2].trim()
    } else {
        if ($_ -match '^\s+(.*)\s+:\s+(.*)\s*$') {
            $current[$matches[1].trim()] = $matches[2].trim()
        }
    }
  } -begin { $networks = @() } -end { $networks|% { new-object psobject -property $_ } }
 }
}

ps> Get-WifiNetwork| select index, ssid, signal, 'radio type' | sort signal -desc | ft -auto