WiFi Status
 
Notifications
Clear all

WiFi Status

16 Posts
4 Users
1 Reactions
524 Views
Nathan_K
(@nathan_k)
Estimable Member Registered
Joined: 4 years ago
Posts: 132
Topic starter  

Windows 11 24H2 update. Microsoft apparently changed the BSSID name to be AP BSSID, so I've updated the line to check for both. Just replace the BSSID line in the code with the segment below. Merry Christmas! πŸ™‚

# Check for naming update from 'BSSID' to 'AP BSSID'
If ( [Array]::indexOf($wifi_status,'BSSID') -eq '-1' ) {
	$BSSID = $wifi_status[ [Array]::indexOf($wifi_status,'AP BSSID') + 1 ]
} Else {
	$BSSID = $wifi_status[ [Array]::indexOf($wifi_status,'BSSID') + 1 ]
}

   
Glenn reacted
ReplyQuote
Page 2 / 2
Glenn's Page