Files
winutil/docs/content/dev/tweaks/Essential-Tweaks/Wifi.md
Real-MullaC 69d8649986 Move docs over. (#3760)
* Docs

* Update docs.yaml

* Delete docs/LICENCE

* Delete docs/README.md

* Update module path in go.mod
2026-01-07 13:55:35 -06:00

2.0 KiB

Disable Wifi-Sense

Last Updated: 2024-08-07

Note

The Development Documentation is auto generated for every compilation of Winutil, meaning a part of it will always stay up-to-date. Developers do have the ability to add custom content, which won't be updated automatically.

Description

Wifi Sense is a spying service that phones home all nearby scanned wifi networks and your current geo location.

Preview Code
{
  "Content": "Disable Wifi-Sense",
  "Description": "Wifi Sense is a spying service that phones home all nearby scanned wifi networks and your current geo location.",
  "category": "Essential Tweaks",
  "panel": "1",
  "Order": "a005_",
  "registry": [
    {
      "Path": "HKLM:\\Software\\Microsoft\\PolicyManager\\default\\WiFi\\AllowWiFiHotSpotReporting",
      "Name": "Value",
      "Type": "DWord",
      "Value": "0",
      "OriginalValue": "1"
    },
    {
      "Path": "HKLM:\\Software\\Microsoft\\PolicyManager\\default\\WiFi\\AllowAutoConnectToWiFiSenseHotspots",
      "Name": "Value",
      "Type": "DWord",
      "Value": "0",
      "OriginalValue": "1"
    }
  ],
  "link": "https://christitustech.github.io/Winutil/dev/tweaks/Essential-Tweaks/Wifi"
}

Registry Changes

Applications and System Components store and retrieve configuration data to modify windows settings, so we can use the registry to change many settings in one place.

You can find information about the registry on Wikipedia and Microsoft's Website.

Registry Key: Value

Type: DWord

Original Value: 1

New Value: 0

Registry Key: Value

Type: DWord

Original Value: 1

New Value: 0

View the JSON file