The project WinAssurance is a collection of scripts to analyse Windows settings.
WinProxyAnalyser.ps1 parses the proxy settings from Windows Registry DefaultConnectionSettings.
You can manually review these settings in Internet Explorer via:
- Open Internet Options
- Tab Connections
- Button LAN Settings
- Dialog Local Area Network (LAN) Settings opens
You can manually review these settings in Winows 10 settings:
- Open Settings
- Select Network & Internet
- Select Proxy
The table below maps out the settings and associated nibbles. The nibbles appear to be AND connected to form the settings value.
| Binary | Decimal | Setting Label IE | Setting Label Edge | Script Marker |
|---|---|---|---|---|
| 0001 | 1 | All LAN Settings Disabled | All Proxy Settings Disabled | DISABLED |
| 0011 | 3 | Only "Proxy Server" Enabled | Only "Use a proxy server" On | PROXY |
| 0101 | 5 | Only "Use automatic configuration script" Enabled (Default) | Only "Use setup script" On (Default) | PAC |
| 0111 | 7 | PAC and PROXY Enabled | PAC and PROXY Enabled | PAC-PROXY |
| 1001 | 9 | Only "Automatically detect settings" Enabled | Only "Automatically detect settings" Enabled | WPAD |
| 1011 | 11 | WPAD and PROXY Enabled | WPAD and PROXY Enabled | WPAD-PROXY |
| 1101 | 13 | WPAD and PAC Enabled | WPAD and PAC Enabled | WPAD-PAC |
| 1111 | 15 | WPAD and PAC and PROXY Enabled | WPAD and PAC and PROXY Enabled | WPAD-PAC-PROXY |
Tested on:
- Windows 7
- Windows 10
WinWlanPSK.ps1 lists all local WLAN profiles which then can be selected for displaying the PSK (CAUTION: PSK is displayed in cleartext).
Tested on:
- Windows 10