I'd like to be able to examine the contents of a JAR file without having to install Winzip or some other tool and without having to rename the file. Windows Explorer can open ZIP files just fine; is there some registry setting I can use to let it treat JARs like ZIPs?
5 Answers
Or from the command line:
assoc .jar=CompressedFolder
Under Vista (or higher) you have to run this in an elevated Command Prompt.
- 128
I tried exporting HKEY_CLASSES_ROOT\.zip, changing all references of '.zip' to '.jar' and importing it to HKEY_CLASSES_ROOT\.jar.
Under Vista at least it let me open a .jar file as if it were a .zip.
- 141
What you need to do is associate the JAR extension in Windows Explorer with Compressed folders. From Windows Explorer select tools / Folder Options. Then the Files Types tab. Select New and associate JAR Compressed (ZIP) Folder.
- 341
The HKEY_CLASSES_ROOT trick doesnt work under Windows 7. There mut be some compelling reason that MSFT doesnt want us to do this.
In setting up a new Windows 10 machine this was the reason I used to install 7-zip but there is no need with this hack given by @hfrmobile.
- Press WinKey and type cmd
- Right click Command Prompt app and select Run as administrator
- Type assoc .jar=CompressedFolder, it should be echoed back to the screen if accepted otherwise you will get an access is denied
- Type assoc .ear=CompressedFolder
- Type assoc .war=CompressedFolder
- Right click a jar in Windows explorer and you should now see the Extract All... menu option available to zip files
- 576