mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-06-04 14:17:27 +00:00
19 lines
461 B
Markdown
19 lines
461 B
Markdown
---
|
|
title: "BitLocker - Disable"
|
|
description: ""
|
|
---
|
|
|
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=632}
|
|
"WPFTweaksDisableBitLocker": {
|
|
"Content": "BitLocker - Disable",
|
|
"Description": "Disables BitLocker.",
|
|
"category": "Essential Tweaks",
|
|
"panel": "1",
|
|
"InvokeScript": [
|
|
"Disable-BitLocker -MountPoint $Env:SystemDrive"
|
|
],
|
|
"UndoScript": [
|
|
"Enable-BitLocker -MountPoint $Env:SystemDrive"
|
|
],
|
|
```
|