Can you configure Windows to open JAR files like ZIP files without a 3rd party tool? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T14:33:04Zhttp://stackoverflow.com/feeds/question/58106http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/58106/can-you-configure-windows-to-open-jar-files-like-zip-files-without-a-3rd-party-to4Can you configure Windows to open JAR files like ZIP files without a 3rd party tool?jodonnell2008-09-12T01:28:54Z2009-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#581362Answer by John Dyer for Can you configure Windows to open JAR files like ZIP files without a 3rd party tool?John Dyer2008-09-12T01:47:42Z2008-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#5814012Answer by rpetrich for Can you configure Windows to open JAR files like ZIP files without a 3rd party tool?rpetrich2008-09-12T01:50:59Z2008-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#581423Answer by Brannon for Can you configure Windows to open JAR files like ZIP files without a 3rd party tool?Brannon2008-09-12T01:53:07Z2008-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#6313690Answer by Don for Can you configure Windows to open JAR files like ZIP files without a 3rd party tool?Don2009-03-10T17:17:26Z2009-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#18010320Answer by Clark Battle for Can you configure Windows to open JAR files like ZIP files without a 3rd party tool?Clark Battle2009-11-26T01:08:49Z2009-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>