Notifications
Clear all
Topic starter
25/12/2024 3:01 am
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
Page 2 / 2
Prev