Zip file created on OS X fails to open in Windows

I have created a 10 GB zip file (I suppose that it is a zip 64 file) as a backup of my Mac. I have moved it into a Windows computer, however, whatever program I use, it fails to open. The closest I got was using a 3rd party zip program, which succeeded in reading the directories, but not the individual files. Is there a program that I can use, or is this only compressible on a Mac (on a Mac, I have succeeded in uncompressing the file)?

There are of course several different companies that make and furnish there product on the market many are free while others you have to pay for. In all the years I have been playing with computers I have found this one to be one of the best on the market.
http://mac.winzip.com/features.htm
Scroll down and you will find the capabilities. You can create and open either Mac or PC.
They also offer a trial version so you can see if this is what you want.
Cheers
Don

Similar Messages

  • ZIP file created in OS X won't open correctly in XP

    Hi there,
    I created a ZIP file of a 196MB folder (full of pictures) in OS X using the right-click, "Compress." When a friend tried to unzip this file in Windows XP, the only file inside the archive was a 0KB file titled _MACOSX. The ZIP file itself was still the correct size, but it was essentially 196MB of empty space. When I open the same ZIP file on my Mac, everything appears as it should,
    Any thoughts/ideas? Thanks, in advance, for your help.

    You're right - my friend was trying with the built-in XP ZIP support.
    I'll have him try one of those programs. Thanks.

  • I've downloaded a zip file from noisetrade, but it won't open on my mac...what shall I do?

    Hey guys, wondering if someone could give me some help. I've downloaded a zip file from noisetrade, but it won't open on my mac.I keep clicking and it vhanges to a cgzp file..and even when I changed the end bit to zip, it won't open. I've tried the unarchive app andthat hasn't worked either...what shall I do?
    Thanks in advance :-)

    iWork (no 's') for iOS & iWork for Mac have not gone away.
    iWork.com (beta) (also no 's') is going away the end of July. iWork.com (beta) is/was an online method of sharing iWork files with other users & never moved out of beta in 3+ years. It is a completely different entity than the iWork apps & is not & never has been necessary for the iWork apps to function.
    A Numbers document, as well as Pages or Keynote documents, cannot be opened on a PC. You must first export them to a file that a PC can use. For Numbers that is generally Excel. In Numbers on your iPad tap the wrench & then tap Share & Print & choose Excel as the file type.
    As for transfering a file from a PC to an iPad, I'm not sure as I don't use a PC.

  • My I-Tunes fails to open in Windows 8.1 not responding is all I get

    My I-Tunes fails to open in Windows 8.1 not responding is all I get is this the best Apple can do for it's customers

    Is that attitude the best that you can do when asking for help from fellow users?
    Try dropping the attitude or help yourself by searching the forums.

  • Zipped files created with Java won't unzip with Java

    Hello there,
    I have written a class for unzipping a zip file using the 'ZipFile' class. It works perfectly fine when I extract zip files that have been created with XP, Winzip, or Winrar.
    I am now experimenting with creating zip files using the ZipOutputStream (http://forum.java.sun.com/thread.jspa?forumID=256&threadID=366550 by author smeee). The code works great for creating the zip file, but when I try and unzip it with the zipfile class mentioned above it throws an exception.
    The error that the following code gives me when it tries to convert an element from the enumeration to a ZipEntry is this: java.io.FileNotFoundException: C:\testfiles\out\high\BAUMAN\00001.jpg (The system cannot find the path specified)
    NOTE: The file is there by the way!!! :-)
    See the code for extracting here:
    try {
                 zippy = new ZipFile(fileName);
                 Enumeration all = zippy.entries();
                 while (all.hasMoreElements()) {//loop through all zip entries
                              getFile((ZipEntry)all.nextElement()); <<<=====FAILS HERE
    } catch (IOException err) {
                 System.err.println(err.toString());
                 return;
    }Now if I extract the zip file with winzip, then rezip it with winzip and run the above method again it works with no errors. Any thoughts. Any help would be greatly appreciated.
    Jared

    Hello All,
    For anyone else who use the forum posting by smeee as a guide to create a zipper (http://forum.java.sun.com/thread.jspa?forumID=256&threadID=366550 by author smeee).
    I was tracing through the code and found that there is a statement that adds 1 character (strSource.length()+1) to the source path. This was causing the following bug:
    In windows it was placing objects like this \myfolder\myfile.txt
    In unix it was placing objects like this yfolder\myfile.txt
    Naturally a path like \myfolder... in the zip index was causing problems. I have added a case statement that tests the OS and then adds two chars if windows to compensate for the 'C:' and does nothing if Unix. The code now runs perfectly on either OS.
    Thanks for your response guys!
    Jared

  • Zip file created in Snow Leopard can't be opened on a PC

    Hi,
    I've created a zip file of a folder containing Word and pdf files using File>Compress in Snow Leopard.
    After emailing to clients, they cannot open the zip file on their PCs.
    Any help? I thought zip was supposed to be universal.
    Thanks in advance!

    All clients, or some clients? How big are the zip files?
    Usually when this happens, one of two things is going on: one of your mail servers is truncating the message (cutting off part of the attachment) because the message exceeds some pre-determined maximum message size (or the mailbox goes over a quota), OR one of you is running a virus/malware scanner on your mail server that objects to certain file types (it's not uncommon to strip .ZIP, .COM, and .EXE files).
    There's also the possibility that a Windows client just doesn't understand the file's type. While that shouldn't be, it does happen sometimes (I've seen it with Lotus Notes, for example). In that case, the recipient should save the attachment as a file on their desktop and open it from the desktop.

  • Why .pdf file, created by Acrobat Distiller 10.1.2. (Windows) failed to convert to MS Word

    I tried to convert .pdf file  to MS Word, but it failed.
    I noticed in  a previous discussion on that topic that this converter ccnnot work with
    .pdf files cteated by certain producers
    My was created by Acrobat Distiller 10.1.2. (Windows)
    Is that a rogue producer too?
    Thanks
    Alexey Kovalev

    At this point, try Acrobat XI Pro to see if you can convert the document there.  A 30-day trial of Acrobat XI Pro is available here:
    www.adobe.com/go/tryacrobatpro/
    If the file fails to convert with Acrobat, it may be corrupted. How did you get this PDF?
    -David

  • Read zip files created by ZipOutputStream

    Hello :)
    I am wondering if it is possible to create a zipfile using ZipOutputStream, which can be read using ZipInputStream with out using the ZipFile work-around discussed in http://forum.java.sun.com/thread.jspa?forumID=256&threadID=492219. This is no option for me, because we have a lot of client applications deployed, which cannot easily be altered.
    Are there any (third-party) libraries which I can use?
    -M1chael

    try it
    // These are the files to include in the ZIP file
    String[] source = new String[]{"source1", "source2"};
    // Create a buffer for reading the files
    byte[] buf = new byte[1024];
    try {
    // Create the ZIP file
    String target = "target.zip";
    ZipOutputStream out = new ZipOutputStream(new FileOutputStream(target));
    // Compress the files
    for (int i=0; i<source.length; i++) {
    FileInputStream in = new FileInputStream(source);
    // Add ZIP entry to output stream.
    out.putNextEntry(new ZipEntry(source[i]));
    // Transfer bytes from the file to the ZIP file
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    // Complete the entry
    out.closeEntry();
    in.close();
    // Complete the ZIP file
    out.close();
    } catch (IOException e) {

  • Pdf file created in Word 2008 will not open in Acrobat 8.2.6 or any other Adobe program

    I have created a 12 page newsletter in Microsoft Word Publisher 2008 and have done so many times before with no problem. Today, I have tried to save it as a .pdf file both in Save As and through the printer. Each .pdf file created in Word will not open in Acrobat 8.2.6, Photoshop C3, Adobe Reader  nor any other Adobe software.
    When I go to open it in Acrobat, my Mac gives me the spinning rainbow. If I try to click on the file, I get a watch and then Acrobat crashes or I have to force quit the software. I really need to convert this file and get it to the printer. Any advice???
    Mac OS X 10.6.7
    Word 08 12.2.8
    Acrobat 8.2.6
    Adobe Reader 10.0.0

    Here is a better example.
    https://www.calcerts.com/PBR1.pdf
    is the original PDF file that is uploaded by a user.  Note that it is only 48kb in size.
    I take the file, add a couple of watermarks and a footer for each page as well as a small image on the last page, add security on it and BAM, the file:
    https://www.calcerts.com/PBR1_AFTER.pdf
    is now 1.5 MB and it takes a LONG time to print.
    Thoughts?

  • File created with Trial version cannot be opened by Captivate 5.5 (Ensure that the file isn't open, the file isn't damaged....etc.)

    Hi,
    I have a file created by Trial version of captivate. It was created in a different computer. Now, I have to make some modification in the file. However, when I tried to open it with Captivate 5.5, I got the error shown below. I am not able to use the popular solution provided in this link Click here to view   because the file was not created in my computer. I believe that there is a lock on the file since it was created with Trial version of captivate. Is it possible that I send the file to a representative, and they look into it?

    Was the file created with the same version? You talk about 'trial', but the only trial version available at this moment is Captivate 8. You were never able to open a Captivate project in a previous version, that explains why you cannot open it in 5.5.

  • CS6 Design and Web Premium Link is a zip file I need to run the program on my Windows 8.1

    I'm having trouble with the zip file for the Creative Suite CS6 Design and Web Premium. Please show me a link that I can run the program on my laptop. Thank you.

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5.4 (win), 5.4 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • ENCRYPTED "FILES" (NOT DRIVE) IN XP WON'T OPEN IN WINDOWS 7

    Because I did not want to move to windows 7 in April 2014 (I was happy with my computer setup and functions), I was advised by a friend to encrypt my files (not drive) in order to be safe in continuing the use of Windows XP O/S. I encrypted several thousands
    of files using Windows XP.
    Some months after this, I had an experience with the computer crashing due to overheating, not a virus attack, thank God. My usual repair person in my building got the computer up and running and said I could pick it up. I figured that this was probably
    a good time to have Windows 7 installed on my computer and I instructed him to do so.
    I failed to inform him that I had encrypted several thousands of files in XP. These files no longer open in Windows 7 after transferring them back to the C: drive.
    Is there a RESTORE ENCRYPTED FILES FOR DUMMIES that someone can suggest? The data lost spans almost 20 years; music, reading material in pdfs, important documents, vacation photos and photos of my 2 deceased cats, etc.
    As I mentioned before, the files are on an external drive.Please advise at your soonest.  I will provide any helpful details to assist. Thanks!
    Navoi7

    Hi,
    As Luca mentioned above, it's important for us to know how you encrypted the files in Windows XP, If you were using some third party tools, then you might need to contact the tool vernder to find a solution.
    If you were using EFS, then please see the following link:
    Troubleshoot encrypted files and folders (see this part: I can't open my files after transferring them to a different computer. )
    http://windows.microsoft.com/en-us/windows-vista/Troubleshoot-encrypted-files-and-folders
    Yolanda Zhu
    TechNet Community Support

  • Palm Desktop v3.1.1.0 fails to open on Windows XP

    No device
    Initial error message: "Failed to open datebook database."
    Error Signature
    AppName: palm.exe AppVer:3.1.1.0 ModName: mfc42.dll
    ModVer: 6.2.8081.0 Offset: 00004518
    How can I access my desktop calendar?
    THANKS!
    Kathleen

    Without knowing what you have tried, all I can suggest is this Palm Knowledgebase article:
    http://kb.hpwebos.com/wps/portal/kb/common/article/10089_en.html
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • I used Computer Associates ver.7.0.0.117 to clear temp files and cache. Firefox won't open a window since though it shows in processes.

    System: Toshiba Portege M750, Vista 32-bit SP2,4GB RAM
    I've been using Firefox up until last night when I shut down. This morning I did a cache cleaning using CA Internet Security Suite, ver 7.0.0.117. Firefox will not open a window, though it does show in the Processes list of Task Manager.
    I've uninstalled and reinstalled ver 6 from the web twice with the same results.
    Firefox has had a tendency to hang (never finding a new website, i.e. busy icon revolves endlessly) when left open over several hybernation cycles.

    <u>'''Kill Application'''</u>
    In Task Manager, does '''firefox.exe''' show in the <u>'''Processes'''</u> tab?
    See: '''[http://kb.mozillazine.org/Kill_application Kill Application]'''
    '''<u>Causes and solutions for Firefox hanging at exit:</u>'''
    '''[[Firefox hangs]]'''
    '''[http://kb.mozillazine.org/Firefox_hangs#Hang_at_exit Firefox hangs at exit (Mozillazine article)]'''
    '''[[Firefox is already running but is not responding]]'''
    <u>'''Safe Mode'''</u>
    You may need to use '''[[Safe Mode]]''' (click on "Safe Mode" and read) to localize the problem. Firefox SafeMode is a diagnostic mode that disables extensions and some other features of Firefox. If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes before starting Safe Mode. When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode". Test to see if the problem you are experiencing is corrected.
    See:
    '''[[Troubleshooting extensions and themes]]'''
    '''[[Troubleshooting plugins]]'''
    '''[[Basic Troubleshooting]]'''
    If the problem does not occur in Safe-mode then disable all of your extensions and then try to find which is causing it by enabling one at a time until the problem reappears. You have to close and restart Firefox after each change via File > Restart Firefox (on Mac: Firefox > Quit). You can use "Disable all add-ons" on the Safe mode start window.

  • Running Java program created with Eclipse plugin fails to open report

    I created a CR 2008 report and using the Eclipse plug-in I created a Java program to drive data through the report and export the resulting reports as pdf files.
    This process works just fine if I run the Java program in Eclipse. I copied the code to a server to run the application remote.
    The program fails at the point of opening the Crystal Report. This is the error.
    D:\src>java EDIInvoice
    Current date : 2009928-
    Report output name is : D:\src\report\Invoice2009928-45462829.pdf
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: com/ibm/icu/util/Ca
    lendar---- Error code:-2147467259 Error code name:failed
            at com.businessobjects.reports.sdk.JRCCommunicationAdapter.<init>(Unknown Source)
    This is the code
    public class EDIInvoice {
         private static final String REPORT_NAME = "D:
    src
    CR8Invoice.rpt";
         public static void launchApplication() {
         try
            FileInputStream in = new FileInputStream("D:
    src
    ghxInv.txt");
            BufferedReader br = new BufferedReader(new InputStreamReader(in));
            String strLine;
            Calendar cal = new GregorianCalendar();
            int month = cal.get(Calendar.MONTH);
            int year = cal.get(Calendar.YEAR);
            int day = cal.get(Calendar.DAY_OF_MONTH);
            String today = (year + "" + (month + 1) + "" + day + "-");
            System.out.println("Current date : " + today);
    // Read the file one line at a time
            while ((strLine = br.readLine()) != null)  
                String patternStr = ",";
                String[] fields = strLine.split(patternStr);
                String EXPORT_FILE = "D:
    src
    report
    Invoice" + today + fields[1] + ".pdf";
                String Company  = fields[0];
                String Invoice = fields[1];
                String PO_number  = fields[2];
                       System.out.println("Report output name is : " + EXPORT_FILE);
         try {
    //Open report.
         ReportClientDocument reportClientDoc = new ReportClientDocument();
         reportClientDoc.open(REPORT_NAME, 0);
         System.out.println("Opened the report");
    As you can see the first 2 println statements worked fine, but the 3rd one failed. The program was not able to open the report.
    Is there a reason the code can not run without Eclipse?

    did you copy all the jar files? especially the jrcadapter.jar? please download the following sample and modify it accordingly:
    [http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/f087d31f-3e11-2c10-2cba-fcb5855f79ef]

Maybe you are looking for

  • How to see full file path in DW find/replace results

    I've been looking for a solution to this for a while now. I've also seen many questions about this on other forums but no real answers. The problem is this: when I use the DW8 find feature to search for something across an entire site (or an entire f

  • Disappearing app icons - and that's only the start

    Despite reading that the apps that came with my 3Gs can't be deleted two have disappeared - Safari and more worryingly the App app. Also when I sync my phone I am unable to sync to the apps stored on my itunes. The app page related to my plugged in d

  • Production mode startup failure for 8.1SP2

    I'm running BEA WL 8.1 on Windows 2000 and have created a new server configuration in production mode with JRocket using the Configuration Wizard through Express Setup. I am unable to successfully start the server manually or through the Workshop int

  • How to sort folios on Library View

    Hello: Is there a way to sort the folios in the Library? I know they appear on the library in the order you published them on the Folio Producer but wanted to know if there's a way to do it (maybe changing the cover date or something else) Saludos,

  • What is Oracle Virtual Manager?

    I know it does sound stupid but i m been assigned a project where in I will be the part of Oracle Virtual Manager Deployement Team. But I have no idea what it is going to be and how difficult this task is. I think this is the best way i can get answe