An open API service indexing awesome lists of open source software.

https://github.com/tomashubelbauer/powershell-explorer-file-extensions

Show/hide file extensions in Explorer using PowerShell
https://github.com/tomashubelbauer/powershell-explorer-file-extensions

powershell

Last synced: 9 months ago
JSON representation

Show/hide file extensions in Explorer using PowerShell

Awesome Lists containing this project

README

          

# Show or Hide File Extensions in Explorer using PowerShell

Show:

```powershell
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v HideFileExt /t REG_DWORD /d 0 /f
```

Hide:

```powershell
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v HideFileExt /t REG_DWORD /d 1 /f
```

Source: https://superuser.com/a/666895/490452