Insert from File puts an Adobe ad in my document

I'm on a deadline to get a document out tonight.  The document consists of 6 pages.  The first two were brought in by my scanner and saved as PDF.  Then I opened that document and used Tools | Insert from File to add 4 existing 1-page PDF documents to the end of my first document.  This seemed to go okay until I reviewed the resulting PDF document.  In place of page #3 is an ad for Adobe Acrobat/Reader.  There is a big logo and then the text,
For the best experience, open this PDF portfolio in Acrobat X or Adobe Reader X, or later."
When I try to delete the page, the original page does not show up.  When I re-insert the page, I get the ad.  If I re-insert at a different location in the document, I get the ad.  I've never had this happen before.  What is going on and how can I get rid of it?
Thanks,
Dave
Acrobat 10.1.8

The page is not an ad. It is displayed INSTEAD OF what you want to see when the viewer doesn't understand what to do, and is the best it can do. So check your versions and software. if all seems well a full screen shot showing the Acrobat window and the message may be best. Also, do you get other messages e.g. about installing Flash?

Similar Messages

  • Change Insert from File preferences

    Hi folks,
    the default for the Insert from File are set to .pdf and therefore I only see a window with pdf files. Commonly I want to see all files and so I have to change the drop down menu to see ALL FILES.
    Is there a way of permanently changing from .pdf to All Files?
    Thanks you
    Peter

    thanks,
    while it is not a permanent solution it is a reasonable work around - thank you
    Peter

  • Default Navigation Pane view after Insert From File

    For some reason the Navigation Pane switches to the Page Thumbnails after the Insert From File command is used in Acrobat XI Professional. This did not happen in Acrobat 9, 7, 6, or 5.
    I've looked through various help material and forums to see if this is a preference that can be changed (i.e., either not set a default and maintain current Navigation Pane view (the method of the previous versions), or set a default to something other than Page Thumbnails (e.g., Bookmarks)) and have not been able to find a solution.
    I can use Insert from File up to 200 times in a day, and this little glitch is proving to be very frustrating.

    For some reason the Navigation Pane switches to the Page Thumbnails after the Insert From File command is used in Acrobat XI Professional. This did not happen in Acrobat 9, 7, 6, or 5.
    I've looked through various help material and forums to see if this is a preference that can be changed (i.e., either not set a default and maintain current Navigation Pane view (the method of the previous versions), or set a default to something other than Page Thumbnails (e.g., Bookmarks)) and have not been able to find a solution.
    I can use Insert from File up to 200 times in a day, and this little glitch is proving to be very frustrating.

  • Prevent Duplicates from Inserting from File in Stored Procedure

    CREATE TABLE dbo.Logins
    [ID] numeric(10, 0) NOT NULL Primary Key,
    [Dr_FName] varchar(50) NOT NULL,
    [Dr_LName] varchar(50) NOT NULL,
    [Login] varchar(50) NOT NULL
    GO
    CREATE TABLE [dbo].[CRIS_USER] (
    [id] numeric(10, 0) NOT NULL Primary Key,
    [login_id] varchar(20) NOT NULL
    GO
    CREATE TABLE [dbo].[CRIS_SYSTEM_USER] (
    [id] numeric(10, 0) NOT NULL Primary Key,
    [cris_user_id] numeric(10, 0) NOT NULL,
    INSERT INTO Logins
    (ID, Dr_FName, Dr_LName,Login)
    VALUES(1,'Lisa','Mars','lmars')
    INSERT INTO Logins
    (ID, Dr_FName, Dr_LName,Login)
    VALUES(2,'Becky','Saturn','bsaturn')
    INSERT INTO Logins
    (ID, Dr_FName, Dr_LName,Login)
    VALUES(3,'Mary','Venus','mvenus')
    INSERT INTO CRIS_USER
    (ID,login_id)
    VALUES(10, 'lmars')
    INSERT INTO CRIS_USER
    (ID,login_id)
    VALUES(20, 'bsaturn')
    INSERT INTO CRIS_USER
    (ID,login_id)
    VALUES(30, 'mvenus')
    INSERT INTO CRIS_SYSTEM_USER
    (ID,cris_user_id)
    VALUES(110, 10)
    INSERT INTO CRIS_SYSTEM_USER
    (ID,cris_user_id)
    VALUES(120,20)
    INSERT INTO CRIS_SYSTEM_USER
    (ID,cris_user_id)
    VALUES(130, 30)
    I'm aware that "ID" is a bad column name and that it should not be numeric. The ID columns are incremented by a program. They are not auto incremented. I didn't design it.
    I have a stored procedure that does a bulk insert from a tab delimited file into the three tables:
    CREATE PROCEDURE [dbo].[InsertUserText]
    WITH EXEC AS CALLER
    AS
    IF OBJECT_ID('TEMPDB..#LoginTemp') IS NULL
    BEGIN
    CREATE TABLE #LoginTemp(Login varchar(50),Dr_FName varchar(50),Dr_LName varchar(50))
    BULK INSERT #LoginTemp
    FROM 'C:\loginstest\InsertUserText.txt'
    WITH (ROWTERMINATOR ='\n'
    -- New Line Feed (\n) automatically adds Carrige Return (\r)
    ,FIELDTERMINATOR = '\t'
    --delimiter
    ,FIRSTROW=4)
    PRINT 'File data copied to Temp table'
    END
    DECLARE @maxid NUMERIC(10,0)
    DECLARE @maxid2 NUMERIC(10,0)
    DECLARE @maxid3 NUMERIC(10,0)
    BEGIN TRANSACTION
    SELECT @maxid = coalesce(MAX(ID), 0)
    FROM dbo.LOGINS WITH (UPDLOCK)
    INSERT INTO dbo.LOGINS(ID,Dr_FName,Dr_LName,Login)
    SELECT row_number() OVER(ORDER BY (SELECT NULL)) + @maxid,
    Dr_FName,Dr_LName,Login
    FROM #LoginTemp
    WHERE #LoginTemp.Dr_FName is not Null;
    SELECT @maxid3 = coalesce(MAX(id), 0)
    FROM dbo.CRIS_USER WITH (UPDLOCK)
    INSERT INTO dbo.CRIS_USER(id,login_id)
    SELECT row_number() OVER(ORDER BY (SELECT NULL)) + @maxid3,
    Login
    FROM #LoginTemp
    WHERE #LoginTemp.Dr_FName is not Null;
    SELECT @maxid2 = coalesce(MAX(id), 0)
    FROM dbo.CRIS_SYSTEM_USER WITH (UPDLOCK)
    INSERT INTO dbo.CRIS_SYSTEM_USER(id,cris_user_id)
    SELECT row_number() OVER(ORDER BY (SELECT NULL)) + @maxid2,
    + row_number() OVER(ORDER BY (SELECT NULL)) + @maxid3
    FROM #LoginTemp
    WHERE #LoginTemp.Dr_FName is not Null;
    PRINT 'Copied from Temp table to CRIS_USER'
    COMMIT TRANSACTION
    GO
    What suggestions do you have to prevent a duplicate Logins.Login? None of the inserts for all three tables should occur if a login already exists in the Logins table. There should be a message to indicate which Login failed. I haven't yet decided if I want
    all of the logins in the text file to fail if there is a duplicate, or just the one with the duplicate. I'm open to suggestions on that. So far, the duplicates only occur when someone forgets to update the tabbed delimited file and accidently runs the procedure
    on an old one. I'm sure I can come up with an if statement that will accomplish this. I could maybe use WHERE EXISTS or WHERE NOT EXISTS. But I know I can get a good solution here.
    I'm also aware that duplicates could be prevented in the table design. Again, I didn't design it.
    I have a tab delimited file created but don't see a way to attach it.
    Thanks for any help.

    Thanks to all three that replied. I meant to mark the question as answered sooner. I've tried all the suggestions on a test system. All will work with maybe some slight variations. Below was my temporary quick fix. I'm working on switching to a permanent
    solution based on the replies.
    This is not the real solution and is not the answer to my question. It's just temporary.
    IF OBJECT_ID('TEMPDB..#LoginTemp') IS NULL
    BEGIN
    CREATE TABLE #LoginTemp(Login varchar(50),Dr_FName varchar(50),Dr_LName varchar(50))
    BULK INSERT #LoginTemp
    FROM 'C:\loginstest\InsertUserText.txt'
    WITH (ROWTERMINATOR ='\n'
    Return (\r)
    ,FIELDTERMINATOR = '\t'
    ,FIRSTROW=4)
    PRINT 'File data copied to Temp table'
    END
    DECLARE @maxid NUMERIC(10,0)
    DECLARE @maxid2 NUMERIC(10,0)
    DECLARE @maxid3 NUMERIC(10,0)
    IF EXISTS(SELECT 'True' FROM Logins L INNER JOIN #LoginTemp LT on L.Login = LT.Login
    BEGIN
    SELECT 'Duplicate row!'
    END
    ELSE
    BEGIN
    BEGIN TRANSACTION
    SELECT @maxid = coalesce(MAX(ID), 0)
    FROM dbo.LOGINS WITH (UPDLOCK)
    INSERT INTO dbo.LOGINS(ID,Dr_FName,Dr_LName,Login)
    SELECT row_number() OVER(ORDER BY (SELECT NULL)) + @maxid,
    Dr_FName,Dr_LName,Login
    FROM #LoginTemp
    WHERE #LoginTemp.Dr_FName is not Null;
    SELECT @maxid3 = coalesce(MAX(id), 0)
    FROM dbo.CRIS_USER WITH (UPDLOCK)
    INSERT INTO dbo.CRIS_USER(id,login_id)
    SELECT row_number() OVER(ORDER BY (SELECT NULL)) + @maxid3,
    Login
    FROM #LoginTemp
    WHERE #LoginTemp.Dr_FName is not Null;
    SELECT @maxid2 = coalesce(MAX(id), 0)
    FROM dbo.CRIS_SYSTEM_USER WITH (UPDLOCK)
    INSERT INTO dbo.CRIS_SYSTEM_USER(id,cris_user_id)
    SELECT row_number() OVER(ORDER BY (SELECT NULL)) + @maxid2,
    + row_number() OVER(ORDER BY (SELECT NULL)) + @maxid3
    FROM #LoginTemp
    WHERE #LoginTemp.Dr_FName is not Null;
    COMMIT TRANSACTION
    END
    GO

  • VISIO insert from file problem

    I have been running some VBA code in MS Access for some time (3+) years, but the code is now giving me some issues.  When I wrote the code, I was using Windows XP, VISIO 2007, MS Access 2007, and Adobe Reader.  Since then several migrations have happened to me.  I moved to VISIO 2010 (code still worked).  I moved to Office 2010 which included Access 2010 and had VISIO 2010 re-installed (code still worked).  I then had the full Adobe Acrobat installed (unsure of version, but the code still worked).  Recently, I was migrated to Windows 7, which required a re-installation of Office 2010, VISIO 2010, and Adobe Acrobat (now version XI PRO).  Since that time, my code is giving me problems.  I have the following line of code in an Access VBA program:
    Set shpOBJ = visapp.activewindow.page.InsertFromFile(Stacking_rpt, visInsertAsEmbed
    This code is intended to insert a report (named stacking_rpt), on a VISIO sheet as an imbedded report.  That is, the contents of Stacking_rpt is embeded onto the VISIO sheet and shows as a report.  Since this last upgrade, this line of code produces an Adobe Acrobat icon with the words Stacking_rpt.PDF under the ICON. 
    My boss also had her machine upgraded at the same time.  She runs the same code from the same Access database as I do and hers runs fine.  The only difference that I can see is that she only has Acrobat reader not the full application.  This leads me to believe that there is a setting/option in either Adobe or Access which is causing my issue.  I have reviewed all of the options in both, but have not been able to identify anything that might be related to this issue.
    Does anyone have any ideas?

    This is actually a question better suited to the Adobe Acrobat SDK forum:  http://forums.adobe.com/community/acrobat/acrobat_sdk
    You are probably just viewing the resulting PDF file from you solution and the way to call Acrobat and Reader is now a little different if you are using DDE.
    http://blogs.adobe.com/pdfdevjunkie/what-developers-need-to-know-about-acrobat-x
    Big Changes in the DDE Naming Convention
    In the previous releases, it was possible that a PDF file would not open in the default handler if other applications were open. For example, even if Acrobat Reader was set as default handler for PDF files, the PDF files would open in Acrobat if Acrobat was installed and running. This could lead to issues, especially for sandboxing applications.
    In this release, the PDF files open in the default handler even if other applications that can read PDF files are open. In the example cited earlier, the PDF now opens in Reader, even if Acrobat is running.
    To implement this feature, there has been a change to the DDE naming convention—the DDE server name has been made unique for Acrobat and for Reader. The new naming convention is as follows:
    Acroview{A|R}{MajorVersion} where {A|R} refer to Acrobat and Reader respectively.
    For example, the name is AcroViewA10 for Acrobat X and AcroViewR10 for Reader 10.
    For connecting to previous versions of Acrobat/Reader, the DDE connect string name continues to be “acroview”. You can get the correct name by using the “DDEAPPNAME” macro defined in WinAppSemaphore.h.
    NOTE: Any scripts that have hard-coded references to the DDE name will have to be updated.

  • Insert from File command

    I have a large document and need to import several other PDFs into this document. 
    When importing multiple documents in one go can you choose or edit the order in which they're imported?  I ask this because I have a folder with say, 20 PDFs, and instead of importing the documents in the order in which they appear, it imports the last document first and so on.  If any of these imported docs have bookmarks contained within then it also adds these at the end of the document.
    I'm using Pro XI on a PC.
    Many thanks in anticiption, and merry Xmas!
    Regards,
    Gary

    I don't have an answer on the bookmarks, but have found that the reverse order has been the case for several versions of Acrobat and it nothing new. It can be frustrating.

  • I am unable to open PDF files or run adobe flash when its needed I have downloaded it several times and tried updating it.

    I am unable to open PDF files or run adobe flash when its needed I have downloaded it several times and tried updating it. NEED HELP

    Adobe Acrobat NPAPI Plug-in, Version 11.0.04
    Adobe® Acrobat® Plug-in for Web Browsers, Version 11.0.04 — from file “AdobePDFViewerNPAPI.plugin”.
    application/pdf
    Acrobat Portable Document Format
    pdf
    application/vnd.adobe.pdf
    Acrobat Portable Document Format (Interim)
    pdf
    application/vnd.adobe.pdfxml
    Acrobat XML Portable Document Format
    pdfxml
    application/vnd.adobe.x-mars
    Acrobat XML Portable Document Format (Interim)
    mars
    application/vnd.adobe.xdp+xml
    XML Data Package
    xdp
    application/vnd.adobe.xfd+xml
    FormFlow99 Data File
    xfd
    application/vnd.adobe.xfdf
    Acrobat Forms Data Format in XML
    xfdf
    application/vnd.fdf
    Acrobat Forms Data Format
    fdf
    doubleTwist Web Plugin
    doubleTwist Web Plugin — from file “doubleTwistWebPlugin.bundle”.
    application/x-vnd-doubletwist
    doubleTwist Web Plugin
    Java Applet Plug-in
    Displays Java applet content, or a placeholder if Java is not installed. — from file “JavaAppletPlugin.plugin”.
    application/x-java-applet
    Basic Java Applets
    javaapplet
    application/x-java-applet;deploy=10.25.2
    Java applet
    application/x-java-applet;javafx=2.2.25
    Java applet
    application/x-java-applet;jpi-version=1.7.0_25
    Java applet
    application/x-java-applet;version=1.1
    Java applet
    application/x-java-applet;version=1.1.1
    Java applet
    application/x-java-applet;version=1.1.2
    Java applet
    application/x-java-applet;version=1.1.3
    Java applet
    application/x-java-applet;version=1.2
    Java applet
    application/x-java-applet;version=1.2.1
    Java applet
    application/x-java-applet;version=1.2.2
    Java applet
    application/x-java-applet;version=1.3
    Java applet
    application/x-java-applet;version=1.3.1
    Java applet
    application/x-java-applet;version=1.4
    Java applet
    application/x-java-applet;version=1.4.1
    Java applet
    application/x-java-applet;version=1.4.2
    Java applet
    application/x-java-applet;version=1.5
    Java applet
    application/x-java-applet;version=1.6
    Java applet
    application/x-java-applet;version=1.7
    Java applet
    application/x-java-vm
    Java applet
    application/x-java-vm-npruntime
    Java applet
    QuickTime Plug-in 7.7.1
    The QuickTime Plugin allows you to view a wide variety of multimedia content in web pages. For more information, visit the QuickTime Web site. — from file “QuickTime Plugin.plugin”.
    application/sdp
    SDP stream descriptor
    sdp
    application/x-mpeg
    AMC media
    amc
    application/x-rtsp
    RTSP stream descriptor
    rtsp,rts
    application/x-sdp
    SDP stream descriptor
    sdp
    audio/3gpp
    3GPP media
    3gp,3gpp
    audio/3gpp2
    3GPP2 media
    3g2,3gp2
    audio/aac
    AAC audio
    aac,adts
    audio/ac3
    AC3 audio
    ac3
    audio/aiff
    AIFF audio
    aiff,aif,aifc,cdda
    audio/amr
    AMR audio
    amr
    audio/basic
    uLaw/AU audio
    au,snd,ulw
    audio/mid
    MIDI
    mid,midi,smf,kar
    audio/midi
    MIDI
    mid,midi,smf,kar
    audio/mp3
    MP3 audio
    mp3,swa
    audio/mp4
    MPEG-4 media
    mp4
    audio/mpeg
    MPEG audio
    mpeg,mpg,m1s,m1a,mp2,mpm,mpa,m2a,mp3,swa
    audio/mpeg3
    MP3 audio
    mp3,swa
    audio/vnd.qcelp
    QUALCOMM PureVoice audio
    qcp,qcp
    audio/wav
    WAVE audio
    wav,bwf
    audio/x-aac
    AAC audio
    aac,adts
    audio/x-ac3
    AC3 audio
    ac3
    audio/x-aiff
    AIFF audio
    aiff,aif,aifc,cdda
    audio/x-caf
    CAF audio
    caf
    audio/x-gsm
    GSM audio
    gsm
    audio/x-m4a
    AAC audio
    m4a
    audio/x-m4b
    AAC audio book
    m4b
    audio/x-m4p
    AAC audio (protected)
    m4p
    audio/x-midi
    MIDI
    mid,midi,smf,kar
    audio/x-mp3
    MP3 audio
    mp3,swa
    audio/x-mpeg
    MPEG audio
    mpeg,mpg,m1s,m1a,mp2,mpm,mpa,m2a,mp3,swa
    audio/x-mpeg3
    MP3 audio
    mp3,swa
    audio/x-wav
    WAVE audio
    wav,bwf
    image/jp2
    JPEG2000 image
    jp2
    image/jpeg2000
    JPEG2000 image
    jp2
    image/jpeg2000-image
    JPEG2000 image
    jp2
    image/pict
    PICT image
    pict,pic,pct
    image/png
    PNG image
    png
    image/tiff
    TIFF image
    tif,tiff
    image/x-bmp
    BMP image
    bmp,dib
    image/x-jpeg2000-image
    JPEG2000 image
    jp2
    image/x-macpaint
    MacPaint image
    pntg,pnt,mac
    image/x-pict
    PICT image
    pict,pic,pct
    image/x-png
    PNG image
    png
    image/x-quicktime
    QuickTime image
    qtif,qti
    image/x-sgi
    SGI image
    sgi,rgb
    image/x-targa
    TGA image
    targa,tga
    image/x-tiff
    TIFF image
    tif,tiff
    video/3gpp
    3GPP media
    3gp,3gpp
    video/3gpp2
    3GPP2 media
    3g2,3gp2
    video/avi
    Video For Windows (AVI)
    avi,vfw
    video/flc
    AutoDesk Animator (FLC)
    flc,fli,cel
    video/mp4
    MPEG-4 media
    mp4
    video/mpeg
    MPEG media
    mpeg,mpg,m1s,m1v,m1a,m75,m15,mp2,mpm,mpv,mpa
    video/msvideo
    Video For Windows (AVI)
    avi,vfw
    video/quicktime
    QuickTime Movie
    mov,qt,mqv
    video/sd-video
    SD video
    sdv
    video/x-m4v
    Video (protected)
    m4v
    video/x-mpeg
    MPEG media
    mpeg,mpg,m1s,m1v,m1a,m75,m15,mp2,mpm,mpv,mpa
    video/x-msvideo
    Video For Windows (AVI)
    avi,vfw
    SharePoint Browser Plug-in
    Microsoft Office for Mac SharePoint Browser Plug-in — from file “SharePointBrowserPlugin.plugin”.
    application/x-sharepoint
    Microsoft Office for Mac SharePoint Browser Plug-in
    Shockwave Flash
    Shockwave Flash 11.9 r900 — from file “Flash Player.plugin”.
    application/futuresplash
    FutureSplash Player
    spl
    application/x-shockwave-flash
    Shockwave Flash
    swf
    Silverlight Plug-In
    5.1.20913.0 — from file “Silverlight.plugin”.
    application/x-silverlight

  • How to insert embedded files in PDF

    Does anyone know how to embed files in a PDF file? I have a Word document where I inserted clickable files (ie, Outlook email message, another word document) but when I convert them to PDF, they are not clickable, meaning they can't be opened. I do not want to share the source file so is there a way to activate these files within the PDF file?
    Any help is appreciated.

    THANK YOU MIKE! I've never used this feature before, I have a follow up question, do I then have to email the attached documents as well or do they open automatically? Also, will the other user need to have the same Acrobat software to open them? I believe they only have Adobe Elements.
    THANKS!
    Mishi

  • Cloud does not disappear from file name?

    why does it take "forever" for the cloud to disappear from file name?
    I saved a numbers document to the cloud a half an hour ago, and the cloud is still there.

    HDash-Tech,
    thanks for the tip, but since I have my iTunes Library on a NAS I have to direct iTunes every now and than via "choose library" to the folder and it doesn't make a difference...
    I think it's somehow due to my iTunes Match.  I know they do not sync audiobooks, but they mess up pretty much everything else within my library.  Songnames here and there and especially cd covers!
    Any other idea how to get it straigten out again?
    Thank,
    Daniel

  • Procedure to Insert PDF from FIle System to Database

    Hi ,
    I have a requirement to put the pdf files from our Local Machine or File system into Database table ..
    For that I have created a directory called "MY_PDF" with create and replace directory .
    Also , I have created a database table to store the files from Local machine FIle System directory ( MY_PDF) .
    I have created a procedure which takes 2 inputs ( ID and FIlename ) as parameters , this procedure when executes , it insert the file along with the ID in the database table .
    Procedure is as follows :
    CREATE OR REPLACE PROCEDURE proc_load_a_file( p_id IN NUMBER, p_filename IN VARCHAR2 )
    AS
    l_blob BLOB;
    l_bfile BFILE;
    x VARCHAR2(1000);
    BEGIN
    x:=p_filename;
    INSERT INTO demo(id,theblob,filename) VALUES ( p_id, empty_blob() ,x)
    RETURNING theBlob INTO l_blob;
    UPDATE demo
    SET locater =l_blob where id=p_id;
    l_bfile := bfilename( 'MY_FILES', p_filename );
    DBMS_LOB.FILEOPEN( l_bfile );
    DBMS_LOB.LOADFROMFILE( l_blob, l_bfile,
    DBMS_LOB.getlength( l_bfile ) );
    DBMS_LOB.fileclose( l_bfile );
    COMMIT;
    END;
    Now , my requirement is not to insert one one file each and every time when I execute the procedure .
    My requirement is first to check the File system Directory (MY_PDF) . If
    there is any pdf file in the directory then it will call that procedure and insert that file into the database untill no files found in the dorectory ( MY_PDF) .
    I am not getting the idea how to do this ..
    Please someone provide some valueable inputs .. so that I can finish it up .
    Thanks
    Prashant Dwivedi

    Suggest using the FlowElement.setStyle method to attach additional information about the image to the InlineGraphicElement that gets created.  Looking at the example code in the posted link you'll need to pass that data to the imageLoadComplete method.  The InlineGraphicElement can be found by saving interactionManager.absoluteStart before the graphic is inserted and then calling textFlow.findLeaf(savedAbsoluteStart).
    Hope that helps,
    Richard

  • Insert Image file from java to ms access database

    Are there any ways to insert image file or any files into microsoft access database and retrieve the file from the database. Guild will be helpful.Thank you.
    regards
    Singaravelan

    The right answer? Don't do it. You should not be putting images in any database.
    Better to write the image to the server's file system and add the path/link to the database instead.
    %

  • Playing inserted avi files in Adobe Acrobat 9 or later

    A user has inserted avi files into Adobe and it always worked up to version 8.1.
    Any version later than that, the avi files will not play anymore.
    Is there any way to make them play or will all his files need converted to another source?
    Converting them all to a different format would be quite the task as there are many videos involved.
    Thanks, Jeff

    You can't edit Excel files in Adobe Acrobat.

  • Error 1305 - Error reading from file C:\Users\Davy Ravenhorst\AppData\Local\Adobe\...

    Hi! I tried to download Adobe Reader 9.3 from your website (www.adobe.com), it downloaded successfully, but when I tried to install it, I got this error:
    Do you know how I can install it so it will read this file? I am not computer-savvy so I don't want to mess with the Security properties of this file nor do anything else with this (or even just anything), unless you are sure you know how to do it so it doesn't mess up my computer. Please help me install this program!! Any help on this is always greatly appreciated!!!
    Thank You.

    Elemanzer wrote:
    Sounds like something is wrong with your profile.
    Create a new admin profile and log into that and try to install adobe reader.  If that works fine, then something is wrong with your profile, if you get the same error message than something is wrong with the machine.
    You can also go to "right click" my computer and go to manage.
    Under there find "services" and see if the windows installer is disabled.
    Do you have the latest java 6.20?  Not that it's needed, but you may want to see if you can installl something else.  It may not even be Adobe, it could be that you can't install anything.
    Creating a new admin profile may not have anything to do with the installation, but I will give it a try anyway.
    Edit   I tried creating a new admin accout (it worked out succesfully), but when I tried to log into this account, the User Account service failed to log me into it, even with a new password. So this does not apply and I deleted the new account.
    As for the Windows Installer in Services, I changed the startup option from Manual to Automatic, and also started it.
    I will try running the installer to see if it installs succesfully.
    Do you think I could remove the Adobe folder from Program Files, to see if this makes a difference? This is just a suggestion. Any other suggestions please let me know.
    I was also thinking, if there are any other Adobe Reader setup files I can download? If so, please post the links in your reply.
    Edit 2   I was also wondering (or even worrying) about this:
    Does this mean I have to reinstall Windows Vista, simply because I cannot install Adobe Reader because of "missing files and/or folders" thing?!? I have been getting other installation errors from installing other programs (like for instance, I got an "Internal error ..." error because it could not find a specific Temp file when I tried to install Google Earth; or, I got some kind of an error because it could not find an "Installer" folder when I installed Dell Support Center)?!? I would HATE to do this, especially since I made (and wasted) a lot of time backing up my important files, installing Windows Vista, and THEN installing some programs. And NOW I get these errors trying to install?! Good grief!! PLEASE HELP!!

  • How do I insert multiple photos into an excel document vs inserting each individually?  Insert, Picture, From FIle...now what?  it only allows me to choose 1 at a time.

    Help - How do I insert multiple photos into an excel document vs inserting each individually?  Insert, Picture, From FIle...now what?  it only allows me to choose 1 at a time.

    https://discussions.apple.com/thread/3383532?tstart=0
    Stefan

  • How can I delete all the files in the Adobe CS4 Master Collection from my machine?

    How can I delete all the files in the Adobe CS4 Master Collection from my machine. I have tried Control Panel but it will not do anything, there are no error messages, it is like as if it is ignoring my instruction. Why should it be so difficult to delete programs one does not want. Any ideas please.

    Moved from Cloud forum to Downloading, Installing forum
    Try running the Adobe Cleaner Tool
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html

Maybe you are looking for

  • How do i transfer photos from itouch to ipad

    Trying to help my Mom transfer her photos from her iTouch to her iPad mini?! 

  • Oracle8i Installation Problems with RedHat 6.1

    Hi all, The Oracle8i installation process for Linux has MUCH room for improvement. After retrieving the so-called "User Friendly Install of Oracle8i on RedHat 6.1", I followed the steps diligently and after extending my swap space, I managed to get t

  • How much is it to upgrade from the student edition

    I have the student edition of labview and am trying to turn the program I built to an executable.  I am trying to transfer the program to another computer but it needs to be an executable file. I need the software to be able to. What do I buy to upgr

  • Convert an indicator to a control

    I'm pulling data out of Access and using an indicator to display it. I would like to change the data in the indicator and save it back to Access. My thought was to change the indicator to a display with a property node and re-save. Unfortunately this

  • Restarting of SQL services

    Hi having a problem to restart my SQL services and its give me this error- FCB::Open failed: Could not open file E:\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER2\MSSQL\DATA\mastlog.ldf for file number 2.  OS error: 5(failed to retrieve text for this e