Add option to disable location services (#478)

This commit is contained in:
Jeffrey
2026-02-18 20:53:53 +01:00
committed by GitHub
parent b355706cee
commit e496aa3af0
7 changed files with 44 additions and 1 deletions

View File

@@ -371,6 +371,19 @@
"MinVersion": null,
"MaxVersion": null
},
{
"FeatureId": "DisableLocationServices",
"Label": "Windows location services & app location access",
"ToolTip": "This will turn off Windows Location Services and deny apps access to your location.",
"Category": "Privacy & Suggested Content",
"Action": "Disable",
"RegistryKey": "Disable_Location_Services.reg",
"ApplyText": "> Disabling Windows location services and app location access...",
"UndoAction": "Enable",
"RegistryUndoKey": "Enable_Location_Services.reg",
"MinVersion": null,
"MaxVersion": null
},
{
"FeatureId": "DisableSearchHistory",
"Label": "local Windows Search history",

View File

@@ -86,8 +86,9 @@ Below is an overview of the key features and functionality offered by Win11Deblo
#### Privacy & Suggested Content
- Disable telemetry, diagnostic data, activity history, app-launch tracking & targeted ads.
- Disable local Windows search history.
- Disable tips, tricks, suggestions & ads across Windows.
- Disable Windows location services & app location access.
- Disable local Windows search history.
- Disable 'Windows Spotlight' and tips & tricks on the lock screen.
- Disable 'Windows Spotlight' desktop background option.
- Disable ads, suggestions and the MSN news feed in Microsoft Edge.

View File

@@ -0,0 +1,9 @@
Windows Registry Editor Version 5.00
; Disable the Windows Location Service (system-wide)
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location]
"Value"="Deny"
; Deny app access to location for the current user
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location]
"Value"="Deny"

View File

@@ -0,0 +1,9 @@
Windows Registry Editor Version 5.00
; Disable the Windows Location Service (system-wide)
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location]
"Value"="Deny"
; Deny app access to location for new/default users
[hkey_users\default\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location]
"Value"="Deny"

View File

@@ -0,0 +1,9 @@
Windows Registry Editor Version 5.00
; Re-enable the Windows Location Service (system-wide)
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location]
"Value"="Allow"
; Re-allow app access to location for the current user
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location]
"Value"="Allow"

View File

@@ -36,6 +36,7 @@ param (
[switch]$DisableDesktopSpotlight,
[switch]$DisableLockscreenTips,
[switch]$DisableSuggestions,
[switch]$DisableLocationServices,
[switch]$DisableEdgeAds,
[switch]$DisableBraveBloat,
[switch]$DisableSettings365Ads,

View File

@@ -38,6 +38,7 @@ param (
[switch]$DisableDesktopSpotlight,
[switch]$DisableLockscreenTips,
[switch]$DisableSuggestions,
[switch]$DisableLocationServices,
[switch]$DisableEdgeAds,
[switch]$DisableBraveBloat,
[switch]$DisableSettings365Ads,