Acrobat 9 Download on Wondows 8.1 produces Error 1309 and 2318: Adobe/Standard/Data.cab does not exist

Has anyone had this error during download on Windows 8.1?  Thanks

Hi Bryan,
Thank you for posting on the Adobe forums, this error occurs when the installer cannot locate the Data1.cab file on your system or the required files with in the Dat1.cab is missing.
The only resolution to it is to download again, also, Acrobat 9 is not tested and developed for Win 8.
Thanks,
Vikrantt Singh

Similar Messages

  • I just downloaded and installed Adobe Reader X.  It does not print.  It is unbelievable to me!

    I just downloaded and installed Adobe Reader X.  It does not send the view to the installed printers.
    It is unbelievable to me that Adobe would broadcast a flawed product like this.
    ljc

    BRIAN; THANK THE LORD FOR GOOD PEOPLE LIKE YOU THAT HELP OTHERS. ADOBE PHOTOSHOP TECH SUPPORT IS THE WORST TECH SUPPORT I HAVE EVER SEEN. I CALLED THEM AND 2 TIMES I TALKED TO INDIA OR WHEREVER, AND COULD NOT UNDERSTAND THEM. THE THIRD CALL  I WAS TALKING TO A GUY AND WAS DISCONNECTED. I TRIED TO CONTACT TECH SUPPORT ON THE NET AND THAT WAS NOTHING BUT A PROBLEM AND COULD NOT GET MY MESSAGE THROUGH. I CALLED ANOTHER # AND THEY WANTED TO CHARGE ME. THAT'S BAD. I JUST PURCHASED THE ELEMENTS 13 AND THERE IS 0 TECH SUPPORT. THANKS AGAIN BRIAN. """DINO"""

  • I download adobe flash play as prompted by youtube and return to sight and the sight says to download latest and greatest adobe flash player again, does not seem to recognize

    i download adobe flash player as prompted and it does not seem to be recognized.

    Go to Apple > System Preferences > Flash Player
    and check to see if your Flash Player is up to date.
    11.9.900.170 is the latest version.

  • I have loaded adobe acrobat using download assistant.  Now, how do I run or install adobe acrobat?

    I have loaded adobe acrobat using download assistant.  Now, how do I run or install adobe acrobat?

    You run the EXE file named "AcrobatPro_11_Web_WWMUI.exe"

  • Content file download failed. Reason: HTTP status 404: The requested URL does not exist on the server.

    Hi,
    I am getting this error in most of our WSUS servers.
    Content file download failed.
    Reason: HTTP status 404: The requested URL does not exist on the server.
    Source File: /Content/FB/134501186F4C81089054E4EC3376E74EEC895EFB.exe 
    Destination File: d:\wsus\WsusContent\FB\134501186F4C81089054E4EC3376E74EEC895EFB.exe
     After few minutes, getting below error as well. But i could see the synchronization has completed successfully.
    Log Name:      Application
    Source:        Windows Server Update Services
    Date:          12/19/2014 4:45:55 PM
    Event ID:      10032
    Task Category: 7
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      ******
    Description:
    The server is failing to download some updates.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Windows Server Update Services" />
        <EventID Qualifiers="0">10032</EventID>
        <Level>2</Level>
        <Task>7</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-12-19T08:45:55.000000000Z" />
        <EventRecordID>496887</EventRecordID>
        <Channel>Application</Channel>
        <Computer>*****</Computer>
         <Data>The server is failing to download some updates.</Data>
    This error is happening everyday. Please advise for a fix.

    Reason: HTTP status 404: The requested URL does not exist on the server.
    Source File: /Content/FB/134501186F4C81089054E4EC3376E74EEC895EFB.exe 
    Destination File: d:\wsus\WsusContent\FB\134501186F4C81089054E4EC3376E74EEC895EFB.exe
    Source:        Windows Server Update Services
    Description:
    The server is failing to download some updates.
    This error is happening everyday. Please advise for a fix.
    If this is happening on an UPSTREAM server it is because you have approved updates that are no longer available from Microsoft. Almost always this involves approvals of *EXPIRED* updates (which have been pulled from the catalog and cannot be downloaded).
    If this is happening on a DOWNSTREAM server it's because something/someone deleted the files from the upstream server. It can also happen if the entire upstream ~\WSUSContent folder has gone amuk.
    For an upstream server, find the expired updates, remove the approvals, cancel the downloads, and then decline the updates.
    For a downstream server, figure out what the affected updates are and fix the upstream server.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Itunes Producer Problems Uploading - File not saving - file does not Exist.

    Can someone please help me out, this problem is killing me. I've uploaded over 200 UPC Albums using Old G3 and Elderly ITunes Producer, but apple asked me to upgrade, so new machine to me Macmini maverics 10.9.? ITunes Producer 3.1.
    So I click open ITunes producer 3.1. Click on make project from Audio
    Files. Name and Save the project in Music-ITunes Producer-Playlists.
    Plug in my external Flash drive and import the 40 Audio files for the
    project. I am using an external flash drive as I can’t get ITunes Producer to
    see my internal hard disk, I do not know if this is normal??
    Go through the process of saving the project to Music – ITunes Producer –
    Playlists – in this case 5060101121313
    I then go through name all Tracks and make sure that all Data is correct.
    Then when I finally go to either save the document or send it to you I get the
    first Screen shot saying
    "The Document "5060101121313" COULD NOT BE SAVED. The File does not exist".
    As I say I have delivered 200 UPC’s to you with the old software and never
    had any problems, I am in urgent need of making significant delivery to you so
    would appreciate you help ASAP.
    Paul

    I have been victorious. Now I am going to post my solution for all those that may have the same problem in the future. I'll even throw in a few key words so it will be more easily found by the search engine.
    Connection conn = null;
            try{
                //connect to database
                DAOManager dao = new DAOManager();
                conn = dao.connectToDB();
                String query = "update ASSIGNMENT set file_object = ?, filename = ?, filetype = ? where a_key = 1"; //sql query
                PreparedStatement pstmt = conn.prepareStatement(query);
                ByteArrayOutputStream baostream = new ByteArrayOutputStream();
                //write to output stream
                byte[] buffer = new byte[1024];
                int len = -1;
                while ((len = instream.read(buffer)) >= 0 )
                    baostream.write(buffer, 0, len);
                baostream.flush();
                byte[] filebytes = baostream.toByteArray();
                baostream.close();
                pstmt.setBytes(1,filebytes); //set blob
                pstmt.setString(2,filename);
                pstmt.setString(3,filetype);
                pstmt.executeUpdate();
                pstmt.close();
            catch (SQLException e) {
                System.out.println(Tools.getLoggingDate() + " upload() Error uploading file -- " + e);
                e.printStackTrace();
            catch (Exception e) {
                System.out.println(Tools.getLoggingDate() + " upload() Error: " + e);
            finally {
                try{
                    conn.close();
                }catch (SQLException e) {}
            }Keywords: setBinaryStream(), setBytes(), MySQL, upload file, InputStream, Blob

  • I have an iphone 5s and it is synced to itunes and works fine. previously I have downloaded audiobooks to my wifes 6th gen nano using this account - now I tunes does not recognize the device and also it seems that it is not being read by the computer?

    I have an iphone 5s and it is synced to itunes and works fine. previously I have downloaded audiobooks to my wifes 6th gen nano using this account - now I tunes does not recognize the device and also it seems that it is not being read by the computer?

    Hey Stan1958,
    Thanks for the question. I understand you are experiencing issues with your iPod nano and iTunes. Based on your symptoms, you may find the following resources helpful in resolving this issue:
    Windows
    iPod appears in Windows but not in iTunes
    iPod not recognized in 'My Computer' and in iTunes for Windows
    iTunes reports that "iTunes cannot recognize this iPod at this time"
    Thanks,
    Matt M.

  • How do I get my personal laptop to connect to my Personal Hotspot on my IPhone 4S after I downloaded IOS6? The laptop connected before I updated my phone. Now it does not.

    How do I get my personal laptop to connect to my Personal Hotspot on my IPhone 4S after I downloaded IOS6? The laptop connected before I updated my phone. Now it does not.

    http://support.apple.com/kb/TS2756
    http://support.apple.com/kb/index?page=search&src=support_site.home.search&local e=en_US&q=personal%20hotspot

  • TS1702 Hello! I cannot download applications, when I try to do it the application says "waiting" but it does not continue downloading! Can someone help me????

    Hello! I cannot download applications, when I try to do it the application says "waiting" but it does not continue downloading! Can someone help me????

    Download only one application at a time.
    Click all downloading applications until they all say "Paused".  Then click one at a time, let it complete downloading, then click the next and repeat.

  • I get download error message, could not be opened bec helper app does not exist, chg the association in preferances--What to do?

    I get - Download Error - /Users/ffrasher//Desktop/Firefps
    3.6.13.dmg could not be opened, because the associated helper app. does not Exist. Change the association in your Preferences. I run MOSX 1.3.9, Firefox 2.0.0.20. What can I do to upgrade.
    Frank

    See:
    *http://kb.mozillazine.org/The_associated_helper_application_does_not_exist

  • TS3212 When I try to download iTune, it shows Drive K which does not exist in my computer. It does not allow me to change to other Drive and terminate download stating ' out of disk capacity"

    Whne I download iTune, it shows that it will be downloaded to Drive K which does not exist in my computer. It does not allow me to change to other Drives has enough capacity. Then I click change bottom, attempting to change drive, it terminates the download.
    Do you have any solutions??

    Try "Invalid drive X:\" install errors. You should still be able to chose the drive for the download when downloading the installer with a web browser. The iTunes application is installed on the active system drive, usually drive C:.
    tt2

  • I downloaded an album and one song from the album does not play?

    I downloaded an album and one of the songs listed does not play.

    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting the incomplete track from your iTunes library and redownload it via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if it re-downloads in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find that song and use the 'Report a Problem' link and fill in the details (iTunes support should reply within, I think, 24 to 48 hours).
    Some people have had a problem with the 'report a problem' link (it's been taking people to this site on a browser instead of showing a form in iTunes) - if it does that to you then try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page.

  • So i tried downloading ios8 and my phone is stuck in recovery mode. i have tried to restore it in itunes and it continues to say itunes does not recognize my phone. i have all my systems up to date and i have tried restarting my computer. help

    So i tried downloading ios8 and my phone is stuck in recovery mode. i have tried to restore it in itunes and it continues to say itunes does not recognize my phone. i have all my systems up to date and i have tried restarting my computer. help

    Me too and I have 4 devices which are now not recognized by iTunes but were immediately before ios8 upgrade
    Come on Apple get your finger out and help us here please ?

  • Hello buy a movie on apple tv, and now can not find the device tells me I should go to settings / downloads / check downloads, but that does not exist in the menu of the apple tv, please help

    Hello buy a movie on apple tv, and now can not find the device tells me I should go to settings / downloads / check downloads, but that does not exist in the menu of the apple tv, please help

    Welcome to the Apple community.
    A number of people have reported similar issues recently, many appear to have found a discrepancy of some kind in their account settings and making changes to these settings or simply resetting them has resolved the matter.
    Check your account details are correct, check that you are using the correct details for Location, Region and Time Zone. You may want to change these settings and then change them back to see if that helps.
    You might also try logging out of and then back into your iTunes account (Settings > iTunes Store > Apple ID’s > Sign Out) and restarting your router. (Some have reported that after doing this, they need to check for rentals even though it may report that there aren’t any, after which rentals once again appear in the ‘movies’ feature)
    Rentals should appear under their own heading in the ‘Movies’ feature, you might also check at Settings > iTunes Store > Check For Rentals.

  • Movie disappeared in Apple TV, general/downloads tab does not exist

    Hi, I've just rented a movie using my Apple TV. The movie started running and after 5 minutes of watching, suddenly it stopped and disappeared. When I wanted to rent it again, I got the error that "the movie has already been rented so I need to go to setting/download... a tab which simply does not exist.
    Anyway, I've tried general/itunesstore/check for rentals and it doesn't go anywhere as well.
    As a result,
    i cannot watch the movie because it just disappeared
    i cannot rent it again because apple tv won't let me
    apple tv will charge me and just because i don't think it's fair, i'll run after 2,99 for a couple of days to convince a call center operator.
    isn't it just bad? apple's doing its worst lately. I've just had my skype gone blind in  MacBook Air because they changed the software so that skype can't see the camera. (it's fixed now.)
    i really want some people to feel themselves bad about their work down in cupertino.
    Anyway, does anyone know what could be done?

    Hello pasink; Hello seanmoney302
    Your problems are not unique:  many people who use this forum have experienced the same thing you two have.
    Here is a solution - first proposed by Corza from Australia - that worked for me:
    In Apple TV, cursor over to Settings and check -
    Settings > iTunes Store > Location
    Settings > General > Time Zone
    Settings > General > Region Format.
    It was the last one that worked for me.  The wrong country was selected under Region Format; as soon as I made the correction, everything returned to normal with my rentals.
    I should add that another series of steps has worked for others.
    Sign out of, then back into, iTunes.  You will have to re-enter your Apple ID and password.
    Restart Apple TV either from within the device itself, or by unplugging and waiting for 30 - 60 seconds, then plugging in again.
    Good Luck to both of you.

Maybe you are looking for

  • Flash components+VB isssue

    Hi, I am doing a project which involves flah UI ,XML and VB. The UI has two major Tree Compnents,One menu bar and a few Accordions. All of these are populated with XML. Now this is embedded in a VB application. The Flash swf will send data to the VB

  • IPad Mini Replacement

    My ipad mini is now being diagnosed and might be replaced. I was wondering if the replacement unit is brandnew as in the units that you'll get when you buy a new one or just a refurbished ipad? If it's a refurbished ipad, will it look like a brand ne

  • Material Group,Product Group

    Hi , Can any one explain what is meant by Material Group, Product Group. Where is it used. What is the difference between Material and Product Group. Do we need to have any prequisites for creating Product Group with Tcode MC84?. Thanks in advance

  • Design Studio working for ipad,iphone, and desktop

    Hello All, I'm new to the SAP design studio world. My first task that has been assigned to me is to see what is the capability of Design Studio to have a singular file and have the CSS be reflective of Iphone,Ipad and Desktop. 1) Is this even possibl

  • PROT-1: Failed to initialize ocrconfig

    Hi, I'm trying to configure two node 10g RAC under Sun Solaris 5.10 using raw devices. I'm getting the below error while running the /u01/app/oracle/product/10.2.0/crs/root.sh. Would be very grateful if you assist us on this. We are using the NFS for