Add option to disable BitLocker automatic device encryption (#451)

This commit is contained in:
Jeffrey
2026-02-04 13:59:10 +01:00
committed by GitHub
parent 46deca7703
commit 84bff3ab0c
7 changed files with 27 additions and 0 deletions

View File

@@ -609,6 +609,18 @@
"MinVersion": null,
"MaxVersion": null
},
{
"FeatureId": "DisableBitlockerAutoEncryption",
"Label": "BitLocker automatic device encryption",
"Category": "System",
"Action": "Disable",
"RegistryKey": "Disable_Bitlocker_Auto_Encryption.reg",
"ApplyText": "> Disabling BitLocker automatic device encryption...",
"UndoAction": "Enable",
"RegistryUndoKey": "Enable_Bitlocker_Auto_Encryption.reg",
"MinVersion": 22000,
"MaxVersion": null
},
{
"FeatureId": "DisableModernStandbyNetworking",
"Label": "Modern Standby network connectivity",

View File

@@ -23,6 +23,7 @@ param (
[switch]$DisableGameBarIntegration,
[switch]$DisableTelemetry,
[switch]$DisableFastStartup,
[switch]$DisableBitlockerAutoEncryption,
[switch]$DisableModernStandbyNetworking,
[switch]$DisableBing,
[switch]$DisableDesktopSpotlight,

View File

@@ -108,6 +108,7 @@ Below is an overview of the key features and functionality offered by Win11Deblo
- Turn off Enhance Pointer Precision, also known as mouse acceleration.
- Disable the Sticky Keys keyboard shortcut. (W11 only)
- Disable fast start-up to ensure a full shutdown.
- Disable BitLocker automatic device encryption.
- Disable network connectivity during Modern Standby to reduce battery drain. (W11 only)
#### Windows Update

View File

@@ -0,0 +1,4 @@
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\BitLocker]
"PreventDeviceEncryption"=dword:00000001

View File

@@ -0,0 +1,4 @@
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\BitLocker]
"PreventDeviceEncryption"=dword:00000001

View File

@@ -0,0 +1,4 @@
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\BitLocker]
"PreventDeviceEncryption"=-

View File

@@ -25,6 +25,7 @@ param (
[switch]$DisableGameBarIntegration,
[switch]$DisableTelemetry,
[switch]$DisableFastStartup,
[switch]$DisableBitlockerAutoEncryption,
[switch]$DisableModernStandbyNetworking,
[switch]$DisableBing,
[switch]$DisableDesktopSpotlight,