mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-06 14:48:31 +00:00
23 lines
740 B
Markdown
23 lines
740 B
Markdown
---
|
|
title: "Remove Gallery from Explorer"
|
|
description: ""
|
|
---
|
|
|
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1530}
|
|
"WPFTweaksRemoveGallery": {
|
|
"Content": "Remove Gallery from Explorer",
|
|
"Description": "Removes the Gallery from Explorer and sets This PC as default.",
|
|
"category": "z__Advanced Tweaks - CAUTION",
|
|
"panel": "1",
|
|
"InvokeScript": [
|
|
"
|
|
Remove-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\NameSpace\\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}\"
|
|
"
|
|
],
|
|
"UndoScript": [
|
|
"
|
|
New-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\NameSpace\\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}\"
|
|
"
|
|
],
|
|
```
|