mirror of
https://github.com/builtbybel/BloatyNosy.git
synced 2025-02-10 15:00:24 +01:00
21 lines
1.0 KiB
JSON
21 lines
1.0 KiB
JSON
{
|
|
"PlugID": "Hide Hidden File Extensions",
|
|
"PlugInfo": "This feature shows or hides hidden file extensions in Windows Explorer.",
|
|
"PlugCategory": "Tweaks (Plugins)",
|
|
"PlugCheck": [
|
|
"reg query HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced /v HideFileExt"
|
|
],
|
|
"PlugDo": [
|
|
"reg add HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced /v HideFileExt /t REG_DWORD /d 1 /f",
|
|
"reg add HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced /v ShowSuperHidden /t REG_DWORD /d 0 /f",
|
|
"taskkill /f /im explorer.exe",
|
|
"start explorer.exe"
|
|
],
|
|
"PlugUndo": [
|
|
"reg add HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced /v HideFileExt /t REG_DWORD /d 0 /f",
|
|
"reg add HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced /v ShowSuperHidden /t REG_DWORD /d 1 /f",
|
|
"taskkill /f /im explorer.exe",
|
|
"start explorer.exe"
|
|
]
|
|
}
|