Don’t you think it’s a bit annoying that Windows 7 does not show you any file extensions? Of course, some people find file extensions very irritating and the icon of the file will tell you the file extension anyway, but sometimes they are needed.

This is a brief tutorial that will explain you ‘how to show file extensions in Windows 7’.

Click here to join Ultra.io - Rare NFTs and Play-to-Earn Games or Read my review first!

There are just three steps that are needed to show all file extensions:

1. Step First of all, open up your Control Panel and click on “Folder Options”:
Windows 7 Control Panel Folder Options

2. StepGo to the tab “View” and locate the entry “Hide extensions for known filetypes”.
Windows 7 Hide Extensions for Known Filetypes

3. Step Click on “Apply” to save your settings and Windows 7 will now show you all of the file extensions.

Show/Hide File Extension Toggle

A handy tool for Windows 7, AutoHotkey allows you to write macros:
http://www.autohotkey.com/

The howtogeek wrote a little tool that allows you to toggle file extensions, you can turn it on and off with a simple shortcut. Good stuff!

; WINDOWS KEY + Y TOGGLES FILE EXTENSIONS

#y::
RegRead, HiddenFiles_Status, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, HideFileExt
If HiddenFiles_Status = 1
RegWrite, REG_DWORD, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, HideFileExt, 0
Else
RegWrite, REG_DWORD, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, HideFileExt, 1
WinGetClass, eh_Class,A
If (eh_Class = “#32770″ OR A_OSVersion = “WIN_VISTA”)
send, {F5}
Else PostMessage, 0×111, 28931,,, A
Return