Winzip

I have downloaded Oracle Database 10g Release 1 10.1.0.2)
Enterprise/Standard Edition for Microsoft Windows (32-bit) from http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/winsoft.html now I am enable to unzip the installation file & it comes up with CRC error. Has anybody faced the same problme before

thats the message I get
Extracting ear.jar
bad CRC 2ec6d279 (should be a168a420)

Similar Messages

  • Unable to open a .zip file (Winzip) from the KM Repository

    Hi.... while i am trying to open a .zip file (i.e., Winzip file) placed in the KM Repository.. I am getting an error -
    "Cannot open file : it does not appear to be a valid archieve."
    Is it someting related to the Winzip version ?
    Can somebody plz tell whr the problem could be..
    Thanks in advance!!
    Regards
    Smita

    Change the "Never compressed" value in Visual Admin. Check this thread for details:
    https://www.sdn.sap.com/irj/scn/thread?threadID=1096110&messageID=6409577#6409577

  • Winzip error for par file

    Hi,
    I have downloaded the winzip par file com.sap.portal.support.browse for the mast head and when i try to extract the par.bak file from it i get a winzip error. I am on windows vista with winzip 8.1. Also tried unzipping with winrar but get the same error. Wondering if there is a solution to this problem ? Error is below
    Extracting to "c:\unzipped\com.sap.portal.support.browse\"
    Use Path: yes   Overlay Files: no
    warning [C:\Users\amit.sharma\Documents\Electrolux\portal\com.sap.portal.support.browse.default\com.sap.portal.support.browse.default]:  extra 105 bytes at beginning or within Zip file (attempting to process anyway)
    Error in file #1:  bad Zip file offset (Error local header signature not found):  0
    (attempting to re-compensate)
    Error in file #1:  bad Zip file offset (Error local header signature not found):  0
    Help greatly appreciated.
    Amit

    Amit,
    Do not extract the com.sap.portal.support.browse, just rename it to the corresponding name with par.bak format.
    or
    You can directly get the par.bak file using below steps,
    System Admin -> Support -> Portal Runtime -> Browse Deployment -> press the link download -> press the button on the window "Open" -> extract the par.bak file
    Ram

  • Output in Bridge CC missing. Attempt to install fix from Bridge Help. WinZip failed. Now what?

    The Output function in Bridge CC is missing. I attempted to install the fix that was available via Bridge help. The WinZip download worked fine. I found the recommended file location. The fix did not install. What else can I use? When will an update be available? Thanks.

    In CC, I am forced to leave Bridge, go into the application, and Open the file through the system dialog box.
    That is not normal behavior (at least on my Mac I still have all installed applications as option under this menu). By default the open with menu under the righty mouse menu should show all installed applications on your system. It sometimes even shows them double in case of attached disks with back up etc.
    This has not changed in Bridge CC. If you have those applications installed on your system at the same location as Bridge they should show.
    First try a reset of preferences for Bridge with holding down control key while restarting Bridge and choose rest preferences from the provided menu.

  • How do I install camera raw 6.6 in a winzip program to Elements 9?

    How do I install camera raw 6.6 in a winzip program to Elements 9?  I have Windows 7.

    See the instructions on this page:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5316
    Ken

  • Opening WinZip files on a MAC

    My iMAC will not open WinZip files. How do I resolve this?

    Hmmmm,
    Zipx
    Full
    Full support for the new compression modes introduced by WinZip.
    http://unarchiver.c3.cx/formats
    Anyway, no idea if this works, but 25 other formats...
    http://www.stuffit.com/mac-expander.html

  • Can the dbms_crypto package be used to decrypt a winzip file?

    I have a password protected winzip file. I know the password.
    Is it possible to decrypt this file using dbms_crypto or is this not supported?
    I have searched everywhere for the answer!
    Please help :-)
    Thanks

    simple example...
    create or replace and compile java source named unZip as
    import java.io.ByteArrayOutputStream;
    import java.util.zip.Inflater;
    public class ByteArrayUnzip {
    public byte[] decompressByteArray(byte[] bytes){
            ByteArrayOutputStream baos = null;
            Inflater inf = new Inflater();
            inf.setInput(bytes);
            baos = new ByteArrayOutputStream();
            byte[] temp = new byte[4*1024];
            try {
                 while(!inf.finished())
                    int size = inf.inflate(temp);
                    baos.write(temp, 0, size);
            } catch (Exception e){
            } finally {
                try{
                    if(baos != null) baos.close();
                } catch(Exception e){}
            return baos.toByteArray();
    create or replace function unzip (p_buf in raw) return raw
    as language java
    name 'ByteArrayUnzip.decompressByteArray(byte[]) return byte[]';
    declare
    v_buf raw(2000);
    v_res raw(2000); -- or blob maybe
    begin
    v_buf := <your data>
    v_res := unzip(v_buf);
    end;
    hope it'll help

  • How to handle WinRaR and Winzip Files?

    This maybe the wrong forum to ask this, but how or can winzip or winrar files be unzipped and the result be loaded on a usb memory stick using osx? or what would it take to do this, as I'm totally ignorant on this one. Hope someone can help.
    Thank You!
    EZ
    iMacs G5 & G3   Mac OS X (10.4.6)   10.3.9 on G3, Direcway 6k cnsmr sat. cnct., netgear ethernet swtch to 2 cmptrs.

    If you search Google or VersionTracker you'll find many answers to your problem.
    I think the best is to download the well-established and reliable Stuffit Expander from SmithMicro. It opens more cross-platform files than I've ever had a chance to use.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.8)  

  • Zip a file that can be opened with winzip

    I have a bit of a problem in finding a solution, to how to I compress a file and open it again with winzip?? PLease can anyone help me!?

    Here is an abap implementation of gzip / gunzip. Enjoy.
    If you find it useful, please post a followup. The same goes if you find bugs, or make any improvements. As usual without any warranty, use at your own risk.
    It is useful when you need to upload hughe file with gui_upload.
    [SCN Wiki GZIP|http://wiki.sdn.sap.com/wiki/display/profile/GZIP]

  • Cannot extract Zip file with Winzip after zipping with java.util.zip

    Hi all,
    I write a class for zip and unzip the text files together which can be zip and unzip successfully with Java platform. However, I cannot extract the zip file with Winzip or even WinRAR after zipping with Java platform.
    Please help to comment, thanks~
    Below is the code:
    =====================================================================
    package myapp.util;
    import java.io.* ;
    import java.util.TreeMap ;
    import java.util.zip.* ;
    import myapp.exception.UserException ;
    public class CompressionUtil {
      public CompressionUtil() {
        super() ;
      public void createZip(String zipName, String fileName)
          throws ZipException, FileNotFoundException, IOException, UserException {
        FileOutputStream fos = null ;
        BufferedOutputStream bos = null ;
        ZipOutputStream zos = null ;
        File file = null ;
        try {
          file = new File(zipName) ; //new zip file
          if (file.isDirectory()) //check if it is a directory
         throw new UserException("Invalid zip file ["+zipName+"]") ;
          if (file.exists() && !file.canWrite()) //check if it is readonly
         throw new UserException("Zip file is ReadOnly ["+zipName+"]") ;
          if (file.exists()) //overwrite the existing file
         file.delete();
          file.createNewFile();
          //instantiate the ZipOutputStream
          fos = new FileOutputStream(file) ;
          bos = new BufferedOutputStream(fos) ;
          zos = new ZipOutputStream(bos) ;
          this.writeZipFileEntry(zos, fileName); //call to write the file into the zip
          zos.finish() ;
        catch (ZipException ze) {
          throw ze ;
        catch (FileNotFoundException fnfe) {
          throw fnfe ;
        catch (IOException ioe) {
          throw ioe ;
        catch (UserException ue) {
          throw ue ;
        finally {
          //close all the stream and file
          if (fos != null)
         fos.close() ;
          if (bos != null)
         bos.close();
          if (zos != null)
         zos.close();
          if (file != null)
         file = null ;
        }//end of try-catch-finally
      private void writeZipFileEntry(ZipOutputStream zos, String fileName)
          throws ZipException, FileNotFoundException, IOException, UserException {
        BufferedInputStream bis = null ;
        File file = null ;
        ZipEntry zentry = null ;
        byte[] bArray = null ;
        try {
          file = new File(fileName) ; //instantiate the file
          if (!file.exists()) //check if the file is not exist
         throw new UserException("No such file ["+fileName+"]") ;
          if (file.isDirectory()) //check if the file is a directory
         throw new UserException("Invalid file ["+fileName+"]") ;
          //instantiate the BufferedInputStream
          bis = new BufferedInputStream(new FileInputStream(file)) ;
          //Get the content of the file and put into the byte[]
          int size = (int) file.length();
          if (size == -1)
         throw new UserException("Cannot determine the file size [" +fileName + "]");
          bArray = new byte[(int) size];
          int rb = 0;
          int chunk = 0;
          while (((int) size - rb) > 0) {
         chunk = bis.read(bArray, rb, (int) size - rb);
         if (chunk == -1)
           break;
         rb += chunk;
          }//end of while (((int)size - rb) > 0)
          //instantiate the CRC32
          CRC32 crc = new CRC32() ;
          crc.update(bArray, 0, size);
          //instantiate the ZipEntry
          zentry = new ZipEntry(fileName) ;
          zentry.setMethod(ZipEntry.STORED) ;
          zentry.setSize(size);
          zentry.setCrc(crc.getValue());
          //write all the info to the ZipOutputStream
          zos.putNextEntry(zentry);
          zos.write(bArray, 0, size);
          zos.closeEntry();
        catch (ZipException ze) {
          throw ze ;
        catch (FileNotFoundException fnfe) {
          throw fnfe ;
        catch (IOException ioe) {
          throw ioe ;
        catch (UserException ue) {
          throw ue ;
        finally {
          //close all the stream and file
          if (bis != null)
         bis.close();
          if (file != null)
         file = null ;
        }//end of try-catch-finally
    }

    Tried~
    The problem is still here~ >___<
    Anyway, thanks for information sharing~
    The message is:
    Cannot open file: it does not appear to be a valid archive.
    If you downloaded this file, try downloading the file again.
    The problem may be here:
    if (fos != null)
    fos.close() ;
    if (bos != null)
    bos.close();
    if (zos != null)
    zos.close();
    if (file != null)
    file = null ;
    The fos is closed before bos so the last buffer is not
    saved.
    zos.close() is enough.

  • Cannot use winzip to unzip the zip file zipped by java.util.zip

    Hi all,
    I use the followcode to create a zip file, and i downlaod it and try to use winzip to unzip this file but fail. The path is correct and i got the zip file. but it just cannot unzip.
    pls help
    thanks alot.
    Kin
              int count = 0;
              count = ContentDocuments.size();
              for (int i = 0; i < bb; i++)     {
                   System.out.println(filenames[i] + "");
              // Create a buffer for reading the files
              byte[] buf = new byte[10*1024*1024];
              try {      
                   String outFilename = MyDir + "zipfile/" + getContentID2()+".zip";
                   System.out.println("outFilename = " + outFilename);
                   ZipOutputStream out = new ZipOutputStream(new FileOutputStream(outFilename));
                   for (int i=0; i<filenames.length; i++) {           
                        FileInputStream in = new FileInputStream(filenames);
                        out.putNextEntry(new ZipEntry(filenames[i]));
                        int len;
                        while ((len = in.read(buf)) != -1) {               
                             out.write(buf, 0, len);
                        out.closeEntry();
                        in.close();
                   out.close();
              } catch (IOException e)     {
                   System.err.println("zipprocess " + e.getMessage());

    I've written a replacement zip file creator class. Not much tested but it seems to work, however I've yet to try it with the version of WINZIP that rejected my previous attempts. Oh, and the stored dates are garbage.
    * ZipOutputFile.java
    * Created on 25 March 2004, 13:08
    package zip;
    import java.io.IOException;
    import java.nio.ByteBuffer;
    * <p>Creates a ZIP archive in a file which WINZIP should be able to read.</p>
    * <p>Unfortunately zip archives generated by the standard Java class
    * {@link java.util.zip.ZipOutputStream}, while adhering to PKZIPs format specification,
    * don't appear to be readable by some versions of WinZip and similar utilities. This is
    * probably because they use
    * a format specified for writing to a non-seakable stream, where the length and CRC of
    * a file is writen to a special block following the data. Since the length of the binary
    * date is unknown this makes an archive quite complicated to read, and it looks like
    * WinZip hasn't bothered.</p>
    * <p>All data is Deflated. Close completes the archive, flush terminates the current entry.</p>
    * @see java.util.zip.ZipOutputStream
    * @author  Malcolm McMahon
    public class ZipOutputFile extends java.io.OutputStream {
        byte[] oneByte = new byte[1];
        java.io.RandomAccessFile archive;
        public final static short DEFLATE_METHOD = 8;
        public final static short VERSION_CODE = 20;
        public final static short MIN_VERSION = 10;
        public final static int  ENTRY_HEADER_MAGIC = 0x04034b50;
        public final static int  CATALOG_HEADER_MAGIC = 0x02014b50;
        public final static int  CATALOG_END_MAGIC = 0x06054b50;
        private final static short DISC_NUMBER = 0;
        ByteBuffer entryHeader = ByteBuffer.wrap(new byte[30]);
        ByteBuffer entryLater = ByteBuffer.wrap(new byte[12]);
        java.util.zip.CRC32 crcAcc = new java.util.zip.CRC32();
        java.util.zip.Deflater def = new java.util.zip.Deflater(java.util.zip.Deflater.DEFLATED, true);
        int totalCompressed;
        long MSEPOCH;
        byte [] deflateBuf = new byte[2048];
        public static final long SECONDS_TO_DAYS = 60 * 60 * 24;
         * Entry stores info about each file stored
        private class Entry {
            long offset;        // position of header in file
            byte[] name;
            long crc;
            int compressedSize;
            int uncompressedSize;
            java.util.Date date;
             * Contructor also writes initial header.
             * @param fileName Name under which data is stored.
             * @param date  Date to label the file with
             * @TODO get the date stored properly
            public Entry(String fileName, java.util.Date date) throws IOException {
                name = fileName.getBytes();
                this.date = date == null ? new java.util.Date() : date;
                entryHeader.position(10);
                putDate(entryHeader);
                entryHeader.putShort(26, (short)name.length);
                offset = archive.getFilePointer();
                archive.write(entryHeader.array());
                archive.write(name);
                catalog.add(this);
                crcAcc.reset();
                totalCompressed = 0;
                def.reset();
             * Finish writing entry data. Save the lenghts & crc for catalog
             * and go back and fill them in in the entry header.
            public void close() throws IOException {
                def.finish();
                while(!def.finished())
                    deflate();
                entryLater.position(0);
                crc = crcAcc.getValue();
                compressedSize = totalCompressed;
                uncompressedSize = def.getTotalIn();
                entryLater.putInt((int)crc);
                entryLater.putInt(compressedSize);
                entryLater.putInt(uncompressedSize);
                long eof = archive.getFilePointer();
                archive.seek(offset + 14);
                archive.write(entryLater.array());
                archive.seek(eof);
             * Write the catalog data relevant to this entry. Buffer is
             * preloaded with fixed data.
             * @param buf Buffer to organise fixed lenght part of header
            public void writeCatalog(ByteBuffer buf) throws IOException {
                buf.position(12);
                putDate(buf);
                buf.putInt((int)crc);
                buf.putInt(compressedSize);
                buf.putInt(uncompressedSize);
                buf.putShort((short)name.length);
                buf.putShort((short)0);  // extra field length
                buf.putShort((short)0);  // file comment length
                buf.putShort(DISC_NUMBER);  // disk number
                buf.putShort((short)0); // internal attributes
                buf.putInt(0);      // external file attributes
                buf.putInt((int)offset); // file position
                archive.write(buf.array());
                archive.write(name);
             * This writes the entries date in MSDOS format.
             * @param buf Where to write it
             * @TODO Get this generating sane dates
            public void putDate(ByteBuffer buf) {
                long msTime = (date.getTime() - MSEPOCH) / 1000;
                buf.putShort((short)(msTime % SECONDS_TO_DAYS));
                buf.putShort((short)(msTime / SECONDS_TO_DAYS));
        private Entry entryInProgress = null; // entry currently being written
        private java.util.ArrayList catalog = new java.util.ArrayList(12);  // all entries
         * Start a new output file.
         * @param name The name to store as
         * @param date Date - null indicates current time
        public java.io.OutputStream openEntry(String name, java.util.Date date) throws IOException{
            if(entryInProgress != null)
                entryInProgress.close();
            entryInProgress = new Entry(name, date);
            return this;
         * Creates a new instance of ZipOutputFile
         * @param fd The file to write to
        public ZipOutputFile(java.io.File fd) throws IOException {
            this(new java.io.RandomAccessFile(fd, "rw"));
         * Create new instance of ZipOutputFile from RandomAccessFile
         * @param archive RandomAccessFile
        public ZipOutputFile(java.io.RandomAccessFile archive) {
            this.archive = archive;
            entryHeader.order(java.nio.ByteOrder.LITTLE_ENDIAN);  // create fixed fields of header
            entryLater.order(java.nio.ByteOrder.LITTLE_ENDIAN);
            entryHeader.putInt(ENTRY_HEADER_MAGIC);
            entryHeader.putShort(MIN_VERSION);
            entryHeader.putShort((short)0);  // general purpose flag
            entryHeader.putShort(DEFLATE_METHOD);
            java.util.Calendar cal = java.util.Calendar.getInstance();
            cal.clear();
            cal.set(java.util.Calendar.YEAR, 1950);
            cal.set(java.util.Calendar.DAY_OF_MONTH, 1);
    //        def.setStrategy(Deflater.HUFFMAN_ONLY);
            MSEPOCH = cal.getTimeInMillis();
         * Writes the master catalogue and postamble and closes the archive file.
        public void close() throws IOException{
            if(entryInProgress != null)
                entryInProgress.close();
            ByteBuffer catEntry = ByteBuffer.wrap(new byte[46]);
            catEntry.order(java.nio.ByteOrder.LITTLE_ENDIAN);
            catEntry.putInt(CATALOG_HEADER_MAGIC);
            catEntry.putShort(VERSION_CODE);
            catEntry.putShort(MIN_VERSION);
            catEntry.putShort((short)0);
            catEntry.putShort(DEFLATE_METHOD);
            long catStart = archive.getFilePointer();
            for(java.util.Iterator it = catalog.iterator(); it.hasNext();) {
                ((Entry)it.next()).writeCatalog(catEntry);
            catEntry.position(0);
            catEntry.putInt(CATALOG_END_MAGIC);
            catEntry.putShort(DISC_NUMBER);
            catEntry.putShort(DISC_NUMBER);
            catEntry.putShort((short)catalog.size());
            catEntry.putShort((short)catalog.size());
            catEntry.putInt((int)(archive.getFilePointer() - catStart));
            catEntry.putInt((int)catStart);
            catEntry.putShort((short)0);
            archive.write(catEntry.array(), 0, catEntry.position());
            archive.setLength(archive.getFilePointer());  // truncate if old file
            archive.close();
            def.end();
         * Closes entry in progress.
        public void flush() throws IOException{
            if(entryInProgress == null)
                throw new IllegalStateException("Must call openEntry before writing");
            entryInProgress.close();
            entryInProgress = null;
         * Standard write routine. Defined by {@link java.io.OutputStream}.
         * Can only be used once openEntry has defined the file.
         * @param b  Bytes to write
        public void write(byte[] b) throws IOException{
            if(entryInProgress == null)
                throw new IllegalStateException("Must call openEntry before writing");
            crcAcc.update(b);
            def.setInput(b);
            while(!def.needsInput())
                deflate();
         * Standard write routine. Defined by {@link java.io.OutputStream}.
         * Can only be used once openEntry has defined the file.
         * @param b  Bytes to write
        public void write(int b) throws IOException{
            oneByte[0] = (byte)b;
            crcAcc.update(b);
            write(oneByte, 0, 1);
         *  Standard write routine. Defined by {@link java.io.OutputStream}.
         * Can only be used once openEntry has defined the file.
         * @param b  Bytes to write
         * @param off Start offset
         * @param len Byte count
        public void write(byte[] b, int off, int len) throws IOException{
            if(entryInProgress == null)
                throw new IllegalStateException("Must call openEntry before writing");
            crcAcc.update(b, off, len);
            def.setInput(b, off, len);
            while(!def.needsInput())
                deflate();
        * Gets a buffer full of coded data from the deflater and writes it to archive.
        private void deflate() throws IOException {
            int len = def.deflate(deflateBuf);
            totalCompressed += len;
            if(len > 0)
                archive.write(deflateBuf, 0, len);

  • Winzip and email won;t work. It needs MAPI. ????

    Winzip has the option to zip a file or folder and email it by right clicking on the file or forder and chosing the procedure. However, when I do it gives the error message "MAPI not available" How do I get MAPI?

    The error message I get is "cannot connect using SSL".  I've tried soft re-booting the iPhone.  No joy.

  • Opening WinZip files?

    I've just bought a Mac mini and would like to know if there is a software which allows opening WinZip files, or one equivalent for compressing files.
    Mac mini   Mac OS X (10.4.7)  

    These should be opened automatically with OS X.
    The Finder includes an archive function saved in zip format.
    To compress files, select the file or files you want to compress via the Finder, then at the Finder menu bar choose File > Create Archive of.
    A compressed archive of the files is created. If you archive a single item, the archived file has the name of the original item with a .zip extension. If you archive multiple items at once, the archived file is named Archive.zip. The recipient of your archived attachment can simply double-click the file to open it, which creates an uncompressed copy of the original item or folder.

  • GZIP format not recognised by winzip or Java

    Hi,
    We are trying to achieve the following.
    We are trying to zip some data in ABAP using the following CL_ABAP_GZIP and put it into a stream. Unfortunately, when we read the stream in the java client we get a "Not in GZIPFormat exception" and the same does not open using winzip. I have a feeling it is something to do with code redundancy checks (crc) which is not done in the ABAP class. Has anyone faced the same issue? Any suggestions?
    Thanks and Best Regards,
    Karthik

    Hi Karthik,
    did you check SAP note 644640? It might help you check actual kernel release.
    Regards,
    Clemens

  • Sequencing winzip 17.0 with app-v 5.0?

    Hi,
    I tried to sequence winzip 17.0 with app-v 5.0 on windows 7 x64, on client test the error message appears: ...."Unable to install over the MSI version of the installation. Please obtain the MSI version or uninstall WinZIP first".I tried to set
    variable "AssocMsgExe" to 0 inside app-v registry but it's the same issue. Someone have a solution for me?

    To suppress the popup window "WinZIP is not currently associated to..." (german: "Derzeit ist WinZip jedoch nicht mit Zip und Zipx-Dateien verknüpft") after publishing the finished WinZip.appv, the following solution worked for me:
    At the "Configure Software" stage (during Application Virtualization procedure) execute the WinZip application at least 2 times, close the occasionally "WinZip Tip of the Day"-Windows and wait for some seconds until closing/restarting the app.
    The official MS Sequencing Guide says: "Many applications have first-run tasks such as accepting license agreements, etc. [...] multiple executions are recommended to ensure any second-run tasks are executed).  Also, it is during this execution that any
    applicable application configuration changes should be made. [...] This screen is also running in monitoring mode.  It is possible to manage the tasks for programs that are not listed on this page by launching them outside of the Sequencer."
    Executing WinZip a 3rd time, (close Tip-of-the-Day-Window,) leave WinZip open and execute
    reg add "HKCU\Software\Nico Mak Computing\WinZip\WinZip" /v AssocMsgExe /t REG_SZ /d 0 /f in the Start menu search box (or via cmd.exe etc.).
    Close WinZip app and execute it again a last (4th) time. Then proceed with App-V sequencer...
    At the "Create Pckage" stage select "Continue to modify package without saving the package editor" and go to the "Virtual Registry"-Tab: Verify if REG_SZ
    AssocMsgExe with value 0 is under USER\[{AppVCurrentUserSID}]\Software\Nico Mak Computing\WinZip\WinZip and save the package.   
    That's it!
    After publishing on a client-PC the popup should be suppressed. Locking at the registry (after the 1st program start) you should find AssocMsgExe at:
    HKCU\Software\Classes\AppV\Client\Packages\[ Package ID ]\Versions\[ Version ID ]\REGISTRY\USER\[ User ID ]\Software\Nico Mak Computing\WinZip\WinZip
    HKCR\AppV\Client\Packages\[Package ID]\Versions\[Vdersions ID]\REGISTRY\USER\[User ID]\Software\Nico Mak Computing\WinZip\WinZip
    Adding AssocMsgExe to the Virtual Registry inside the Package Editor
    after the monitoring mode takes no effect: on the 1st start of WinZip you'll see the popup for 1 single time again, because the suppressing REG_SZ will be written not until the first program start. You
    have to add the SZ during monitoring mode.

  • I recently purchased an upgrade to Photoshop CS6. (Dec 9 2014).  I have today downloaded the file (Photoshop_13_LS16.7z  This downloaded OK   When I tried to run the file (Winzip) I got the following message  "Installer failed to initialise. Could be due

    I recently purchased an upgrade to Photoshop CS6. (Dec 9 2014).  I have today downloaded the file (Photoshop_13_LS16.7z
    This downloaded OK
    When I tried to run the file (Winzip) I got the following message
    "Installer failed to initialise. Could be due to a missing file.  Please download Abobe support adviser."
    I tried to do that and it told me Adobe support adviser no longer exists.
    Could you please advise a solution.

    Extract it to a different location inside a dedicated folder and make sure to not destroy the file and folder hierarchy inside the archive. also run the install with sufficient user privielges and security stuff turned off.
    Mylenium

Maybe you are looking for