~]$ mkdir "jbcp-<version>"
~]$ mv "JBCP-1.2.0.GA-jboss-eap-4.3.zip" "jbcp-<version>"
~]$ cd "jbcp-<version>"
jar -xvf command to extract the contents of the zip file into the current directory, thus completing the install:
jbcp-<version>]$ jar -xvf "JBCP-1.2.0.GA-jboss-eap-4.3.zip"
unzip utility is present on your system or is installable, you can use it in lieu of Java's jar -xvf command:
jbcp-<version>]$ unzip "JBCP-1.2.0.GA-jboss-eap-4.3.zip"
unzip's -d<unzip_to_location> option to extract the zip file's contents to a location other than the current directory.
jbcp-<version>]$ rm "JBCP-1.2.0.GA-jboss-eap-4.3.zip"
My Downloads folder. First, using Windows Explorer, create a subfolder in My Downloads to extract the zip file's contents into. When you name this folder, it is good practice to include the version number; if you do so, remember to correctly match it with the version of the JBoss Communications Platform binary distribution you downloaded. In these instructions, we will refer to this folder as jbcp-<version>.
jar -xvf command to extract the binary distribution files from the zip archive. To use this method instead, first move the downloaded zip file from My Downloads to the folder that you just created to hold the JBoss Communications Platform files.
cd command:
C:\Users\Me>cd "My Downloads\jbcp-<version>"
jar -xvf command to extract the archive contents into the current folder.
C:\Users\Me\My Downloads\jbcp-<version>>jar -xvf "JBCP-1.2.0.GA-jboss-eap-4.3.zip"
jbcp-<version>) to another location. This step is not strictly necessary, but it is probably a good idea to move the folder from My Downloads to a user-defined location for storing runnable programs. Any location will suffice, however.
C:\Users\Me\My Downloads\jbcp-<version>>delete "JBCP-1.2.0.GA-jboss-eap-4.3.zip"