PoshCode Archive  Artifact [6c3ecc80de]

Artifact 6c3ecc80de7e4f2971cd74e531a719d76e3c373c629500c11a0796fb7d4286f0:

  • File Get-WifiNetwork.ps1 — part of check-in [09f51b2c2b] at 2018-06-10 13:40:35 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: 3097)

# 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: 4416
# x-archived: 2015-05-10T04:28:30
# x-published: 2015-08-23T07:02:00
#
# This is a slightly improved version as I had several Repeaters not appearing in the prior script.
#
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+(BSSID) \d{1,}\s+:\s+(.*)\s*$') {
                    if ($current[$matches[1].trim()].Length -gt 0) {
                        $current = @{}
                        $current.Index = $networks.Item($networks.Count-1).Index
                        $current.SSID = $networks.Item($networks.Count-1).SSID
                        $current['Network type'] = $networks.Item($networks.Count-1)['Network type']
                        $current['Authentication'] = $networks.Item($networks.Count-1)['Authentication']
                        $current['Encryption'] = $networks.Item($networks.Count-1)['Encryption']
                        $current['MaxSignal'] = $networks.Item($networks.Count-1)['MaxSignal']
                        $networks += $current
                    }
                    $current[$matches[1].trim()] = $matches[2].trim()
                }
                elseif ( $_ -match '^\s+(Signal)\s+:\s+(.*)\s*$' ) {
                    $current[$matches[1].trim()] = $matches[2].trim();
                    $current['MaxSignal'] = $matches[2].trim();
                    foreach($network in $networks) {
                        if ( $current.Index -eq $network.Index -and $current['MaxSignal'] -gt $network['MaxSignal'] ) {
                            $network['MaxSignal'] = $current['MaxSignal'];
                        } elseif ( $current.Index -eq $network.Index -and $current['MaxSignal'] -lt $network['MaxSignal'] ) {
                            $current['MaxSignal'] = $network['MaxSignal'];
                        }
                    }
                }
                elseif ($_ -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, bssid, MaxSignal, signal, 'radio type',Authentication, Encryption | sort MaxSignal, signal -desc | select index, ssid, bssid, signal, 'radio type',Authentication, Encryption | ft -auto