Can you configure Windows to open JAR files like ZIP files without a 3rd party tool? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:33:04Z http://stackoverflow.com/feeds/question/58106 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/58106/can-you-configure-windows-to-open-jar-files-like-zip-files-without-a-3rd-party-to 4 Can you configure Windows to open JAR files like ZIP files without a 3rd party tool? jodonnell 2008-09-12T01:28:54Z 2009-11-26T01:08:49Z <p>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?</p> http://stackoverflow.com/questions/58106/can-you-configure-windows-to-open-jar-files-like-zip-files-without-a-3rd-party-to/58136#58136 2 Answer by John Dyer for Can you configure Windows to open JAR files like ZIP files without a 3rd party tool? John Dyer 2008-09-12T01:47:42Z 2008-09-12T01:47:42Z <p>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.</p> http://stackoverflow.com/questions/58106/can-you-configure-windows-to-open-jar-files-like-zip-files-without-a-3rd-party-to/58140#58140 12 Answer by rpetrich for Can you configure Windows to open JAR files like ZIP files without a 3rd party tool? rpetrich 2008-09-12T01:50:59Z 2008-09-12T01:50:59Z <p>Or from the command line:</p> <pre><code>assoc .jar=CompressedFolder </code></pre> http://stackoverflow.com/questions/58106/can-you-configure-windows-to-open-jar-files-like-zip-files-without-a-3rd-party-to/58142#58142 3 Answer by Brannon for Can you configure Windows to open JAR files like ZIP files without a 3rd party tool? Brannon 2008-09-12T01:53:07Z 2008-09-12T02:16:40Z <p>I tried exporting HKEY_CLASSES_ROOT\.zip, changing all references of '.zip' to '.jar' and importing it to HKEY_CLASSES_ROOT\.jar.</p> <p>Under Vista at least it let me open a .jar file as if it were a .zip.</p> http://stackoverflow.com/questions/58106/can-you-configure-windows-to-open-jar-files-like-zip-files-without-a-3rd-party-to/631369#631369 0 Answer by Don for Can you configure Windows to open JAR files like ZIP files without a 3rd party tool? Don 2009-03-10T17:17:26Z 2009-03-10T17:17:26Z <p>It doesn't appear to work under Vista. Anyone know how to do this for Vista?</p> http://stackoverflow.com/questions/58106/can-you-configure-windows-to-open-jar-files-like-zip-files-without-a-3rd-party-to/1801032#1801032 0 Answer by Clark Battle for Can you configure Windows to open JAR files like ZIP files without a 3rd party tool? Clark Battle 2009-11-26T01:08:49Z 2009-11-26T01:08:49Z <p>The HKEY_CLASSES_ROOT trick doesnt work under Windows 7. There mut be some compelling reason that MSFT doesnt want us to do this.</p>