Windows 10 changing .zip file association

11

2

I have 7-Zip installed, and it hasn't changed the default file associations. I've changed the associations for .rar and .7z, but I can't find a way to change .zip.

I looked in Default Programs\Set Associations, and I searched for .zip, but it's not there. Seriously it goes from .z, .z96, .zoo. It seems to skip .zip. How can I fix this? If it needs to be, I'm fine with registry edits.

tjpc3 The Redstoner

Posted 2015-11-07T01:36:38.110

Reputation: 113

Answers

12

7-Zip does not associate itself with the various compressed file types.

To associate .zip file types with 7-Zip, do the following:

  1. Open the 7-Zip File Manager with Administrator Rights from your start menu
  2. Go to the tools menu and select options
  3. Either select the individual extensions you wish to associate or press the “Select All” button (recommended).
  4. Press OK to save your changes

Source: https://community.spiceworks.com/how_to/45718-set-file-associations-to-work-with-7-zip-in-windows-7-windows-server-2008-r2

pun

Posted 2015-11-07T01:36:38.110

Reputation: 5 311

The link is (effectively) broken. It redirects to a generic page. – Peter Mortensen – 2018-07-05T04:27:45.077

@PeterMortensen I've updated the link with another one. – pun – 2018-07-05T06:07:43.393

3

Elevate the 7-Zip File Manager to run as an administrator. Then click menu ToolsOptions and choose your file associations.

Or if you're in an elevated command prompt you can use assoc and ftype to tweak your system:

C:\WINDOWS\system32>assoc .zip=7-Zip.zip
.zip=7-Zip.zip

C:\WINDOWS\system32>ftype 7-Zip.zip=C:\Program Files\7-Zip\7zFM.exe
7-Zip.zip=C:\Program Files\7-Zip\7zFM.exe

The default for .zip is CompressedFolder:

C:\WINDOWS\system32>assoc .zip=CompressedFolder

C:\WINDOWS\system32>ftype CompressedFolder=%SystemRoot%\Explorer.exe /idlist,%I,%L

Louis

Posted 2015-11-07T01:36:38.110

Reputation: 18 859

0

When right-clicking on the file, open it with another application, and set it as the default from the Windows default dialogue.

Contextual Menu on file

Default Picker

Logan Fleur

Posted 2015-11-07T01:36:38.110

Reputation: 41