Show hidden files and file extensions
@reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /t REG_DWORD /v Hidden /d 1 /f 1>nul
@reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /t REG_DWORD /v HideFileExt /d 0 /f 1>nul
@reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /t REG_DWORD /v ShowSupperHidden /d 1 /f 1>nul
$null = set-itemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced Hidden 1 # default = 2?
$null = set-itemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced HideFileExt 0 # default = 1?
$null = set-itemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced ShowSuperHidden 1 # default = 0?
Don't show Edge tabs when alt-tabbing
Windows shows the three most recent tabs of
Edge when alt-tabbing. This is rather distracting and can be turned off by setting
MultitaskingAltTabFilter
to 3:
$null = set-itemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -name MultiTaskingAltTabFilter -type dWord -value 3
This value influences alt-tabbing as follows:
- 0 = Open windows and all tabs in Edge
- 1 = Open windows and the 5 most recent tabs in Edge
- 2 = Open windows and the 3 most recent tabs in Edge
- 3 = Open windows
Update 2025-07-16, Windows 11 (24H2): Even after restarting Edge with following commands, the behavior did not change. I had to logoff and login again for this modification to have the desired effect.
PS: C:\> get-process msedge | stop-process
PS: C:\> & "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe"