Skip to content

File Explorer File Extensions

config/tweaks.json
1385  "WPFToggleShowExt": {
1386    "Content": "File Explorer File Extensions",
1387    "Description": "Shows .file extensions in explorer (.exe, .png, etc)",
1388    "category": "Customize Preferences",
1389    "panel": "2",
1390    "Type": "Toggle",
1391    "registry": [
1392      {
1393        "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
1394        "Name": "HideFileExt",
1395        "Value": "0",
1396        "Type": "DWord",
1397        "OriginalValue": "1",
1398        "DefaultState": "false"
1399      }
1400    ],
1401    "InvokeScript": [
1402      "
1403      Invoke-WinUtilExplorerUpdate -action \"restart\"
1404      "
1405    ],
1406    "UndoScript": [
1407      "
1408      Invoke-WinUtilExplorerUpdate -action \"restart\"
1409      "
1410    ],

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.