Ask again before opening an attachment
I used your previous tip to get rid of the Save/Open prompt when double clicking an attachment. Now I want to undo that for several file types.
How can I undo that?
Undoing this change and re-enable the prompt before opening the attachment is only possible via the Registry.
In general, there are 2 locations which you should check, as where the change is stored depends on the file type and how it was unblocked originally.
Changing “EditFlags” in the Registry
To re-enable the prompt before opening the attachment, you’ll have to modify the “EditFlags” value for the extension in the Registry.
- Open the Registry Editor.
- In
HKEY_CLASSES_ROOT
, look for the extension that you want to change. So for a zip-file you locate;HKEY_CLASSES_ROOT\.zip
- Note the (Default) value for that hive. For a zip-file this is;
CompressedFolder
- Now locate that description in the
HKEY_CLASSES_ROOT
hive. So in our example you locate;HKEY_CLASSES_ROOT\CompressedFolder
- Here you'll find a key named
EditFlags
. This will either be a REG_BINARY or a REG_DWORD type. - Double click to open it and change it as follows
- REG_BINARY
Change the 3rd group of 2 digits to00
.
Example:
The value;00 00 01 00
would then become00 00 00 00
- REG_DWORD
Change the hexadecimal value of the 4th digit after0x
to0
.
Example:
The value0x00210000
would then become0x00200000
- REG_BINARY
Resetting the EditFlags for zip-files via the Registry.
Internet Explorer (and some other applications)
If you disabled the “Always ask before opening this type of file” checkbox via another application, such as Internet Explorer, then it could also be that you’ll find a reference to the description value (which you determined in step 3) in the following registry location;
HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\AttachmentExecute\{0002DF01-0000-0000-C000-000000000046}
In that case, delete that value from that key or delete the AttachmentExecute
value altogether to reset all the listed extensions to the configured default for your computer.