I have a few EAR/WAR files which are Java archives and I would like Windows 7 to open these files the way it opens a file with extension zip.

So I open this war file and in the list of softwares available with "Open" I see MS Word, Notepad etc but nothing about CompressedFolderView.

I also tried manually specifying the location of exe (I thought this was expand.exe) but that does not work. Does someone know if I can make this work? Or should I use Winzip or some such utilities?

link|improve this question

50% accept rate
feedback

2 Answers

up vote 0 down vote accepted

7zip will work, simply associate the ear/war extension with it.

link|improve this answer
Thanks DHayes. I can indeed use Winzip or 7zip but I would prefer to use the windows-7 viewer if possible. If there isnt a solution posted in say 3 days I will fall back to this solution :) – Calm Storm Apr 21 '10 at 14:56
feedback

If you tell Windows that JAR, WAR and EAR files are compressed folders, Explorer will show you what is inside without having to rename them to ZIP. Very helpful when there is a JAR inside a WAR.

Run this in a command line window:

assoc .jar=CompressedFolder
assoc .war=CompressedFolder
assoc .ear=CompressedFolder

(Better late than never)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.