How to unzip a template file

How do you unzip a downloaded file into PSE?

Whatever you may be talking about,
http://forums.adobe.com/community/photoshop_elements
might be a better place for the question.

Similar Messages

  • How to unzip gz (gunzip ) file

    Hi Everybody,
                             can anybody please tell me how to unzip file with gz (gunzip) extension.I have tried to unarchive by using powerarchive and unzip tools.I even tried gzip tool. Please help me .
    S. Singh

    Hi Sukhwinder,
    For this first intall gunzip. A free version is available here:
    http://www.gzip.org/
    After intallation go to cmd promp and transfer to the path where gzip is installed.
    Finally type in gzip -d <full path of the file to be decompressed>.
    Regards.
    Ruchit.

  • How to unzip a pdf file

    How can I unzip a pdf file I have down loaded?

    If it were simply a .pdf then double clicking would open Acrobat Reader, but the original poster said that produced a .cpgz file. I don't know what that is, but I'll bet double clicking it produces a .zip file, which will produce a .cpgz file, etc. etc.
    I encountered this problem for the first time today. Unzipping just produced a .cpgz file, which would unzip to a .zip, which would unzip to a .cpgz ...
    None of the proposed diagnoses or solutions I found on the web worked either. The file was neither too large nor unfeasibly small, it had finished downloading, neither finder nor stuffit expander would do it.
    Then I found buried away in a post a link to The Unarchiver.  It's free,  and it worked.

  • How to Unzip EBS software files into directory on linux

    Hi,
    I am trying to unzip the Software file which i 've downloaded from eDelivery on /u01 directory to /u01/Rstage/directroy
    when i execute the command under /u01 directory in order to unzip all the zip under /u01 to /u01/Rstage directory. I get the following Error
    unzip .zip -d Rstage/*
    -bash: unzip: command not found
    *[root@22 u01]# gunzip *.zip -d Rstage/*
    gunzip: V32251-01.zip: unknown suffix -- ignored
    gunzip: V32252-01.zip: unknown suffix -- ignored
    gunzip: V32253-01.zip: unknown suffix -- ignored
    gunzip: V32254-01.zip: unknown suffix -- ignored
    gunzip: V32255-01.zip: unknown suffix -- ignored
    gunzip: V32256-01.zip: unknown suffix -- ignored
    gunzip: V32257-01.zip: unknown suffix -- ignored
    gunzip: V32258-01.zip: unknown suffix -- ignored
    gunzip: V32259-01.zip: unknown suffix -- ignored
    gunzip: V32260-01.zip: unknown suffix -- ignored
    gunzip: V32261-01.zip: unknown suffix -- ignored
    gunzip: V32262-01.zip: unknown suffix -- ignored
    gunzip: V32263-01.zip: unknown suffix -- ignored
    gunzip: V32264-01.zip: unknown suffix -- ignored
    gunzip: V32265-01.zip: unknown suffix -- ignored
    gunzip: V32266-01.zip: unknown suffix -- ignored
    gunzip: V32267-01.zip: unknown suffix -- ignored
    gunzip: Rstage/ is a directory -- ignored
    Does the above error mean the RPM of zip isn't there on linux or command syntax is wrong ?
    Could you plz tell if its the right way to unzip all the files into /directory ?
    Thanks & Regards
    MZ

    Try any of below two option:-
    unzip ‘*.zip’ -- *.zip in single quotes.
    or
    through single shell command:-
    for i in *.zip; do unzip $i; done
    Thanks,
    JD

  • How to unzip and zip files

    I have a very large number of Karaoke music that plays on my windows pc but some will not play on my Mac. I think i need to unzip & re-zip them to play on my mac but i'm not sure exactly how to do this. any suggestions? Do I need a special program? running os x 10.9.3

    Zip files can be opened with the built in 'Archive Utility' application. Double click any zip file & it will try to unzip it.
    This application is tucked away inside /System/Library/CoreServices/Archive Utility.  If you want to set preferences for it you need to open the location in Finder by using the 'Go Menu > Go to Folder…', enter /System/Library/CoreServices/ for the path & then open the Archive Utility application and look in it's preferences.
    I expect that zipping & rezipping will not do anything useful for you. I suspect that the file format is the issue.
    Unzip some files & post what the Finders 'File > Get info' panel shows, take a screenshot of it with 'cmd+shift+4', then drag the crosshairs to select the area. it will appear on the Desktop for uploading here.
    You may need to find a compatible player or find a way to convert them if the Mac cannot play them.
    P.S. to zip a file(s) select the items & right click, select 'Compress x items' & you will get a zip archive - I don't think it will help you though

  • ABAP- JAVA : How to unzip a zip file sent by ABAP

    Hello,
    We are using JCO to exchange the XML strings (File Sizes can range upto couple of MBs) between ABAP and JAVA. We were earlier using a STRING parameter for XML data exchange. This approach was resulting in huge performance overheads. As per our initial performance investigations, we have identified that time taken for XML exchange using JCO is the major bottlenecks.
    Currently we are evaluating Zip - Exchange - Unzip mechanism for XML exchange.
    We now try to ZIP the export content using following ABAP code:
          TRY.
              CALL METHOD cl_abap_gzip=>compress_text
                EXPORTING
                  text_in  = lv_xmlstring
                IMPORTING
                  gzip_out = ev_xmlstring.
    This returns an XSTRING (zipped) which is lesser in size as compared to the earlier xml STRING.For zipping the XML String this code works fine. But on java end on using the following code (for unzipping):
    public static String unzipStringFromBytes( byte[] bytes ) throws IOException
        ByteArrayInputStream bis = new ByteArrayInputStream(bytes);
        BufferedInputStream bufis = new BufferedInputStream(new InflaterInputStream(bis));
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        byte[] buf = new byte[1024];
        int len;
        while( (len = bufis.read(buf)) > 0 )
          bos.write(buf, 0, len);
        String retval = bos.toString();
        bis.close();
        bufis.close();
        bos.close();
        return retval;
    We get the following error:
    java.util.zip.DataFormatException: unknown compression method
         at java.util.zip.Inflater.inflateBytes(Native Method)
         at java.util.zip.Inflater.inflate(Inflater.java:215)
    Please share java code snippet which we can use in our program to retrieve our initial XML string.
    Best Regards,
    Aayush

    Hi,
    i took a sequence '0123456789' and gziped it with your ABAP code snipped.
    Result is in HEX:
    '33 30 34 32 36 31 35 33 B7 B0 04 00'
    Than i took an good old gzip executable and gzipped a text file with the same sequence in compression mode 6(default of ABAP Method).
    Result in HEX:
    '1F 8B 08 08 BA B1 D1 45 00 0B 31 2E 74 78 74 00'
    '33 30 34 32 36 31 35 33 B7 B0 04 00 C6 C7 84 A6'   <-- quiet similar with ABAP gzip data
    '0A 00 00 00'
    It seems that some gzip headers and trailers are missing from ABAP Processor's output, i don't know why, maybe it will help you to fake the file headers's to your data section: http://www.gzip.org/zlib/rfc-gzip.html
    Other topic is your Exception: java.util.zip.Inflater.inflate(Inflater.java:215)
    Inflater is used for ZLIB compressed files, try to pass your InputStream to an Object of [java.util.zip.GZIPInputStream] like:
    http://www.galileocomputing.de/openbook/javainsel6/javainsel_12_010.htm [Listing 12.29]
    Let me know if it works and have fun.....

  • How to unzip a zip file within another zip file

    I've got code that successfully processes a file within a zip file.
    But now the zip file can also contain other zip files. How can I
    process a zip nested within a zip without actually extracting the
    files? It looks like I need a ZipFile object to be able to take
    advantage of the zip classes for reading zip entries. But the
    ZipFile methods want as an argument an actual file, as opposed
    to some object in memory. I can read the 'inner' zip file into a
    ZipInputStream object, but then how do I make that available for
    processing as a ZipFile? I've searched all over and cannot find
    anything anywhere that talks about working with nested zip files.
    Does anyone have any sample code that does this? Thanks!

    I have successfully done it.
    You cannot have the code - it is proprietary.
    However here are a few pointers:
    o Use ZipStreams rather than ZipFile.
    o ZipStream is just a filter on a stream, so you can have a zipstream open, read a ZipEntry, then ask for a substream for the stuff up to the next ZipEntry. Put a second ZipStream on that substream.
    o As I recall you have to watch out that your inner ZipStream does not do a close. (Everything will get closed.) Instead, there is another ZipStream method that will close without closing all the underlying streams.
    Hope this helps.

  • How do: Unzip an .exe file (a firmware update for a Samsung TV) and what is the best unzip software to use...Thanks

    Mac Book Pro 15" (mid 209)  LION OS 10.7.5,  Samsung instructions from their website:  download firmware update.  Doubleclick on USB and unzip file. (I dont have any unzip software as of yet; at least I dont think I do, because when I attempt to unzip the file, a page pops up that looks like hieroglyphics)
    Thanks in advance.

    You cannot open .exe files on a Mac. Was there no .dmg file, or something on Samdung's website about a download for Mac? Seems typical of Samdung to do things like this.

  • How to unzip/open .rar file?

    Hello guys,
    I have just received a download I have purchased. (I have purchased audio files for film score editing, so the resulting files should be audio files).
    But the downloaded file I have received is 700 mb .rar file.
    When I double click it, it tries to open DivX converter, but I only had a trial version, which is now expired.
    Is there any other way of unzipping/opening this .rar file? Ot is DivX the only application?
    Thank you so much for your help.

    Hello, I am not positive but there may be a command line option to un-rar items. I use an App called Macpar deluxe
    http://www.xs4all.nl/~gp/Site/MacPAR_deLuxe.html
    From the menu bar of Macpar, choose process the unrar. It will then let you search for the file. If you have a .ro1, .ro2..... it will highlight the start rar.
    Cheers,
    Glynn

  • How to unzip cpio extention file

    Hi All,
    I am trying to install Oracle 9.2.0.4 on linux so i downloaded oracle software but not able to extract this files on linux
    i tried with this command
    1. gunzip ship_9204_linux_disk1.cpio.gz------------I extracted this file to cpio
    2. cpio -idmv <ship_9204_linux_disk1.cpio --------I am not able to extract this file (i.e.system is hanging )
    can any body help in this
    Thanks in Advance
    Praveen

    Pasting Oracle support solution (ID 458985.1), hope this helps ....
    Unable to use cpio to uncompress the 10gr2_aix5l64_client.cpio install media
    Using:
    cpio -idcmv 10gr2_aix5l64_client.cpio
    This hangs.
    -- Steps To Reproduce:
    cpio -idcmv 10gr2_aix5l64_client.cpio
    Cause
    Incorrect Syntax:
    cpio -idcmv 10gr2_aix5l64_client.cpio
    Correct Syntax:
    cpio -idcmv < 10gr2_aix5l64_client.cpio
    The cpio command must be fed the correct file name with a file redirect using "<".
    Solution
    -- To implement the solution, please execute the following steps::
    Please issue:
    cpio -idcmv < 10gr2_aix.cpio
    This should work to uncompress the cpio file.

  • How to unzip a file

    please tell me how to unzip a downloaded file on a macbook pro.

    Click on it.  If that does not work, Download THE UNARCHIVER from the app store.
    Ciao.

  • Unzipping a jar file

    how do Unzip a jar file?

    You can unjar a file giving
    " jar -xvf filename.jar " at the command prompt if u don't have a jar.exe please try using winzip/unzip..
    ebistro

  • Template Files not Updating

    Hey guys,
    My laptop was infected with a virus last week and I had to get it rebuilt. I have since lost my installed version of Dreamweaver MX and I can't find my serial code so at the moment I have installed the trial version of the latest Dreamweaver CS5.
    I have a few template files for one of my sites that I do and I have tried to update it but when I do the child files (is that the right term) are not being updated with the changes. I have a few editable regions but the changes I am making are not being made to the editable regions.
    Can anyone advise me how to get the template file changes on to the child files?
    Thanks

    Try this -
    1.  Open DW's Site manager, select the site, and click the EXPORT button to export a FULL site definition (make sure you both select the top radio button in the ensuing dialog, and take note of where you save the exported *.ste file).
    2.  With the site's name still selected in Site manager, click the REMOVE button to remove this site's definition from DW.
    3.  Then click the IMPORT button to import the site definition you just removed.  This will force DW to rebuild the site cache and recreate the list of template child pages associations.
    Your updates should now propagate to the child pages.  Do they?

  • How to use template files in EasyDMS

    Hi everyone,
    In certain doc types we are using a template file (like excel or word document), so the user can choose in the "originals" section to create file from a template.
    The problem is that on EasyDMS there isn't such option.
    How can we use the template files from there too?

    refer
    http://help.sap.com/erp2005_ehp_04/helpdata/en/48/d602b6553b3e49e10000000a421937/content.htm

  • How do I update template-related files on remote server

    I've created a template as a way to keep the pages consistent across my intranet site but when I need to make changes to the template, I'm unsure how to update the remote files to follow the changes. In order to update locally, I go to Modify>Templates>Update Pages but how do I get my remote files to sync to the local file changes created by the template change? Is there a setting somewhere that allows remote files to follow local file settings that have been changed by a template?

    I don't necessarily need FTP setup since the remote server is local as well (intranet site on web server located in-house). But I've tried syncing the files within the files panel group by doing Site>Synchronize and choosing "Entire Site" and "Put Newer Files to Remote". It then analyzed the files for a while but didn't do any updating after all its analyzing. Is this what you're talking about, Thuy?

Maybe you are looking for

  • Use of Commodity Code/Import Code Number

    Anybody using Commodity Code/Import Code Number in MM02 under the Foreign trade tab? Can you tell me what you are doing with this field? Thanks, Joe.

  • I am using a Panasonic camera modelHMC 80 Files do not transfer

    I am using a Panasonic camera HMC 80 with a Sandisk 32g card. Card is lock when I put it in the SD slot and does mount. When using Log and Transfer I get the following error message. "PRIVATE" contains unsupported media or has an invalid directory st

  • CRM 2007 - Best Practice C72 - FTP & HTTP Destinations

    Hi Gurus I'm busy with configuring our Internet Sale and am now stuck on this issue. In C74 under Index 3.1.2.1 3.1.2.1                Creating RFC Destination for FTP and HTTP When I run program RSFTP005 the 2 destinations are created perfectly. Whe

  • ODBC driver install says requires unixODBC 2.3.0, but I have 2.3.1 installed

    I'm trying to install the ODBC driver according the instructions here http://technet.microsoft.com/en-us/library/hh568454.aspx but when I do ./install.sh verify it fails and write this to the log: [Thu Jul 18 10:28:22 EDT 2013] Verifying that unixODB

  • Having trouble with social networks and connection issues

    My iPad won't load any pictures on facebooks website, or the app. It will load google pictures but on Facebook they come up as a blue question mark and it also won't let me log into intagram or snapchat, it says check your network connection. Also my