Show File Extensions
config/tweaks.json
2489 "WPFToggleShowExt": {
2490 "Content": "Show File Extensions",
2491 "Description": "If enabled, File extensions (e.g., .txt, .jpg) are visible.",
2492 "category": "Customize Preferences",
2493 "panel": "2",
2494 "Type": "Toggle",
2495 "registry": [
2496 {
2497 "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
2498 "Name": "HideFileExt",
2499 "Value": "0",
2500 "Type": "DWord",
2501 "OriginalValue": "1",
2502 "DefaultState": "false"
2503 }
2504 ],
2505 "InvokeScript": [
2506 "
2507 Invoke-WinUtilExplorerUpdate -action \"restart\"
2508 "
2509 ],
2510 "UndoScript": [
2511 "
2512 Invoke-WinUtilExplorerUpdate -action \"restart\"
2513 "
2514 ],Registry Changes
Applications and System Components store and retrieve configuration data to modify windows settings, so we can use the registry to change many settings in one place.
You can find information about the registry on Wikipedia and Microsoft’s Website.