Looking for Installation package "AcroPro.msi"--my computer says it's already installed, but I can't find it or get it to run

I am looking for the installation package "AcroPro.msi".  I had previously installed Acrobat Pro XI, but it seems to have disappeared, although the computer says it's installed.  Where do I find this installation package?
I use Acrobat Pro to save documents as pdf files, mostly tax returns and documents for transmittal to clients

Hi Billstrom,
What was the Acrobat version installed on your machine.
You may visit this link to download Acrobat version you own: http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html
If you have windows, click on Start > in the search box , type Adobe Acrobat and wait and see if you have Acrobat listed there or you may visit  C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat and look for "Acrobat.exe " or "Acrobat". It should be there if you have Acrobat Already installed.
Regards,
Ajlan Huda.

Similar Messages

  • Had to uninstall iWork trial since I bought the pages app and it wouldn't let me print or save.  Now the app store says I have pages installed but I can't find it anywhere to open and use it.  I'm not very computer savvy and am getting frustrated!

    Ooops, guess I didn't need to post everything in the title - sorry!  I bought the pages app - but couldn't save or print so with some online searching found that I had to uninstall the iWork trial which had expired.  I did that - but now I can't figure out how to re-install the pages app!!  The app store says it's installed, but I can't find it anywhere to open and use it.  I'm not very computer savvy - and am a first time Mac user and am getting extremely frustrated!  I e-mailed some help center and they can't seem to help me either.  I would appreciate any help/advice that can fix my problem - thanks in advance!!

    OK Apple has stuffed up the demo version upgrade process so the first thing you need to do is get rid of the demo.
    That includes getting rid of the files in the system.
    The instructions how to do that are here:
    Note That where you see / that is the sequence of folders, each nested inside each other.
    User/Library/Preferences the com.apple.iwork.Keynote.plist
    Means the User (you, the little home icon, whatever you are called on your computer) then the Library folder inside that and then the Preferences folder inside that.
    Lion initially hides the System folders from you so you have to go to the Finder > Menu > hold down the option key and click on GO > Library to see it.
    Peter

  • [Solved] Packages installed, but cmake can't find them

    Hello all,
    I'm trying to build the new version of Slingshot, called new-slingshot. I've made the following PKGBUILD, but get an error when during the cmake part.
    PKGBUILD:
    pkgname=new-slingshot
    pkgver=latest
    pkgrel=1
    pkgdesc="New version of elementary's launcher Slingshot."
    arch=('i686' 'x86_64')
    url="https://code.launchpad.net/~slingshot-devs/"
    license=('GPL2')
    depends=('libgee' 'gnome-menus' 'granite-bzr' 'zeitgeist')
    makedepends=('bzr' 'cmake')
    optdepends=('wingpanel-bzr: panel to go with the Pantheon shell')
    provides=(slingshot)
    conflicts=(slingshot)
    options=('!emptydirs' '!libtool')
    _bzrtrunk="lp:slingshot"
    _bzrmod="new-slingshot"
    build() {
    cd "${srcdir}"
    msg "Connecting to the server...."
    if [ -d ${_bzrmod} ]; then
    bzr up ${_bzrmod}
    msg "The local files are updated."
    else
    bzr co ${_bzrtrunk} ${_bzrmod}
    fi
    msg "BZR checkout done or server timeout"
    msg "Starting make..."
    cd new-slingshot
    mkdir build; cd build
    cmake ..
    make
    make DESTDIR="${pkgdir}" install
    The error is as followed:
    -- checking for modules 'gobject-2.0;glib-2.0;gio-2.0;gio-unix-2.0;gee-1.0;gtk+-3.0;libgnome-menu;granite;zeitgeist-1.0'
    -- package 'granite' not found
    -- package 'zeitgeist-1.0' not found
    CMake Error at /usr/share/cmake-2.8/Modules/FindPkgConfig.cmake:266 (message):
    A required package was not found
    Call Stack (most recent call first):
    /usr/share/cmake-2.8/Modules/FindPkgConfig.cmake:320 (_pkg_check_modules_internal)
    CMakeLists.txt:31 (pkg_check_modules)
    -- Found Vala: /usr/bin/valac
    -- checking for a minimum Vala version of 0.12.0
    -- found Vala, version 0.14.0.3-1a311
    -- GSettings schemas will be installed locally.
    -- GSettings shemas will be compiled.
    -- GSettings schemas will be installed into /usr/local/share/glib-2.0/schemas/
    -- Configuring incomplete, errors occurred!
    ==> ERROR: A failure occurred in build().
    Aborting...
    I do, however, have granite and zeitgeist installed (from AUR):
    ┌─[jente@lappy new-slingshot][13:50:18]
    └─■ pacman -Qs zeitgeist && pacman -Qs granite
    local/zeitgeist 0.8.1.1-1
    A service which logs the users's activities and events and makes relevant
    information available to other applications
    local/granite-bzr 72-1
    A development library by the elementary Project.
    Can you help me fix this issue? Thanks in advance!
    Last edited by Unia (2011-09-21 16:41:06)

    I have fixed the granite-bzr PKGBUILD already, and added the
    provide=(granite)
    line, but that still results in the same error. I had thought about the zeitgeist versioning too, but AFAIK zeitgeist 0.8.1.1-1 is the latest version and I think this is just the Ubuntu naming for it. (initially slingshot is written for elementaryOS which is based on Ubuntu...)
    EDIT: Zeitgeist 0.8.1.1-1 is indeed the latest version available. Also, here is the PKGBUILD I used for granite:
    pkgname=granite-bzr
    pkgver=latest
    pkgrel=1
    pkgdesc="A development library by the elementary Project."
    arch=(i686 x86_64)
    url=https://launchpad.net/granite
    license=(GPL)
    depends=('glib2' 'gobject-introspection' 'gtk3' 'vala-git')
    makedepends=('bzr' 'cmake')
    provides=(granite)
    _bzrtrunk="lp:granite"
    _bzrmod="granite"
    build()
    cd "${srcdir}"
    msg "Connecting to the server...."
    if [ -d ${_bzrmod} ]; then
    bzr up ${_bzrmod}
    msg "The local files are updated."
    else
    bzr co ${_bzrtrunk}
    fi
    msg "BZR checkout done or server timeout"
    msg "Starting make..."
    cd granite
    mkdir build; cd build
    cmake ..
    make
    make DESTDIR="${pkgdir}" install
    Last edited by Unia (2011-09-21 12:22:19)

  • I have 2012 Macbook Air with OSX mountain lion installed, but I can't find the installer

    When i check on the Mac App Store, i still have to pay?
    I mean it doesn't make any sense, I buy this macbook pro along with the os, and I still have to pay the OS again?
    I wish they keep the CD installer just like couple years ago.
    Thanks

    Welcome to the Apple Support Communities
    You can install Mountain Lion for free on Internet Recovery > http://support.apple.com/kb/HT4718

  • I bought a computer with Photoshop CS6 already installed, but I don't have the serial number - can I still transfer this software to a new computer?

    I currently have a MackBook with Photoshop CS6 installed. This came with the laptop when I bought it on eBay, therefore, I don't have the serial number for the software. Can I still transfer the Photoshop CS6 from this laptop onto a new one?
    Thanks
    Jack

    No.
    Whoever sold you the laptop should have removed the software first, or gone through the proper process to transfer the license to you. Chances are that they used it to obtain an upgrade, in which case it would not even to eligible to be transferred.

  • Sky Player - I am trying to register for the service but it says I have missing plugins but Firefox can't find any

    I am trying to sign-up to Sky Player however I cannot do so because when I press the 'sign-up' button on the web page it refuses to take me to next page and the Firefox has a banner saying 'missing plugins'. When I click on that Firefox cannot find the missing plugins! I manually download some but it makes no difference.
    Had similar problems in the past with other sites and end up have to use IE instead!

    Install Silverlight.

  • HT1925 unable to locate installation package itunes.msi to delete itunes, any suggestions on how else to delete itunes???

    I am unable to delete itunes from my computer due to unable to locate installation package itunes.msi. I do not have this file on my computer, can anybody tell me how to delete itunes from my computer??

    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. (The results from mydigitallife and Major Geeks are worth checking.)
    After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove".
    Quit out of CleanUp. Restart the PC, and try another iTunes install. Does it go through properly this time?

  • How can i remove iTunes 10.1.0.54 saying the feature you are trying to use is on a network resource...enter an alternate path to a folder contaning the installation package 'iTunes.msi'?

    How can i remove iTunes 10.1.0.54 saying the feature you are trying to use is on a network resource...enter an alternate path to a folder contaning the installation package 'iTunes.msi'?
    < Edited by Host >

    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. (The results from mydigitallife and Major Geeks are worth checking.)
    After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove".
    Quit out of CleanUp. Restart the PC, and try another iTunes install. Does it go through properly this time?

  • After trying to run the iTunes automatic update, I got this "The feature you are trying to use is on a network resource that is unavailable." Click OK to try again,or enter an alternate path to a folder containing the installation package 'itunes.msi"

    After trying to run the iTunes automatic update, I got this box on my pc "The feature you are trying to use is on a network resource that is unavailable. Click OK to try again, or enter an alternate path to a folder containing the installation package 'iTunes.msi" in the box below.. I ran a search for the file, and entered that into the box, to no avail. Then I launched iTunes and clicked on 'check for updates', and was told I had the latest version 11.0.1 I think it is. So, any clue on what to do? Thanks for any and all help.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • "Alternate path to a folder containing the installation package 'iTunes.msi'"

    Trying to upgrade my iTunes for my new IPod Touch(32GB). It needs a newer version than I have. When running the installer, it must remove the old iTunes first, I assume.  This is what I receive:
    "The feature you are trying to use is on a network resource that is unavailable.
    Click OK to try again, or enter an alternate path to a folder containing the installation package 'iTunes.msi' in the box below."
    There is a dropdown box with 2 options:
    C:\Documents and Settings\...\Local Settings\Application Data\Apple\Apple Software Update\
    and
    C:\Documents and Settings\All Users\Application Data\Apple Computer\Installer Cache\iTunes 9.2.0.61
    I have already had to remove Bonjour with the Windows Installer Cleanup Utility due to another common error when running the install
    I've gotta get this working before my trip in a couple weeks! Any help is appreciated!

    I have already had to remove Bonjour with the Windows Installer Cleanup Utility due to another common error when running the install
    You're already well on track, then. Launch CleanUp again and remove any iTunes entries this time. Quit CleanUp, restart the PC and try another iTunes install.

  • Attempting to update from 10.1 to 10.4 I get this msg: "The feature you are trying to use is on a network resource that is unavailable. Click OK to try again, or enter an alternate path to a folder containing the installation package "iTunes.msi".

    Attempting to update from 10.1 to 10.4 I get this msg:
    "The feature you are trying to use is on a network resource that is unavailable. Click OK to try again, or enter an alternate path to a folder containing the installation package “iTunes.msi”. ?
    I locate the file in "Program Files\iTunes" and change the path.  I then get this: 
    "The file ’C:\Program Files\iTunes is not a valid installation package for the product iTunes. Try to find the installation package ‘ iTunes.msi ’ in a folder from which you can install iTunes."
    What folder will work ???

    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. (The results from mydigitallife and Major Geeks are worth checking.)
    After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove".
    Quit out of CleanUp. Restart the PC, and try another iTunes install. Does it go through properly this time?

  • Exchange 2010 Rollup 2 SP3 update cannot find installation package exchangeserver.msi file on SBS 2011... NEED HELP!!!

    Hello,
    I am running a windows SBS 2011 standard system and there was currently an update for Exchange 2010 Rollup 2 Service Pack 3 and it keeps failing.  It says that it cannot find the installation package (exchangeserver.msi) and it is looking for it
    in E:\Software\Exchange2010-SP3-x64\ folder but there never was this folder.  There is only an Exchange2010-SP3-x64.exe file.
    The only exchangeserver.msi file that I find on the server any where is in C:\ProgramFiles\Windows Small Business Server\Bin\CMPNENTS\EXCHANGE14_SP1 but it won't accept it (says not authorized for this update or something alike).
    Please help.  It is currently causing issues with email.  Some of the features are not working because it says exchange is currently under maintenance.
    Any suggestions would be greatly appreciated.  Thank you.

    Susan you are correct:  After I installed Exchange 2010 SP3, I deleted the msi just to "clean up' my hard disk...  While trying to install Rollup 2 for SP3, the installer is trying to find it.  I downloaded the installer, used 7-zip to get
    the msi and I pointed the installer to it when asked.
    The installation failed 3 times... 
    NOTE: I was using WSUS to install the Rollup:  I downloaded the Rollup installer and I executed:  I could see where the installer was hanging up!  First it asked me to stop an SBS service and something else (sorry I do not remember), I stopped
    the services and installation continued.  Then it asked me for more files from the SP3 installation which I found on the installation folder that I created with 7-zip.  I copied to the path that the installer was looking and installation finished
    (finally!)...
    NOTE 2:  If you have any firewall appliance that denies Internet access to un-authenticated requests, you better turn that rule off because the installer accesses the internet (not sure why - probably for Dot Net assemblies)...
    Susan THANKS for all your help to the community!  You have helped so much! 
    All the Best
    Constantine

  • I cannot uninstall or install itunes.  error is 'trying to use on a network resource that is unavailable'.  I cannot find a pth to any folders containning installation package itunes.msi.  Unable to download itunes since 2 updates ago and crashed com

    I cannot uninstall or install itunes.  error is 'trying to use on a network resource that is unavailable'.  I cannot find  path to any folders containing installation package itunes.msi.  Unable to download itunes since 2 updates ago and crashed computer.    Windows update as suggested in some posts does not assist either.
    Can anyone assist me?  Thank you so much

    Should the advice above not fix things for you...
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • I am trying to install itunes 10.5 but I get an error message that says click ok to try again or enter an alternate path to a folder containing the installation package iTunes.msi...I try to point iTunes to the .msi file but that is not working.

    i am trying to install itunes 10.5 but I get an error message that says "click ok to try again or enter an alternate path to a folder containing the installation package iTunes.msi..." I try to point iTunes to the .msi file on my c drive but then it gives me  a message says "the file location is not a valid installation packaage for the product iTuness.  Try to find the installation package 'itunes.msi' in a folder from which you can install iTunes".  Any help, insight, guidance would be greatly appreciated!!

    "The feature you are trying to use in on a network resource that is unavailable. Enter alternate path to a folder containing the installation package itunes64.msi".
    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • When I try to update itunes, I get the following:  The feature you are trying to use is on a network resource that is unavailable.  Click OK to try again, or enter an alternate path to a folder containing the installation package iTunes64.msi in the box..

    When I try to update itunes, I get the following:  The feature you are trying to use is on a network resource that is unavailable.  Click OK to try again, or enter an alternate path to a folder containing the installation package iTunes64.msi in the box below.
    This leads me to another dialog box that says:  The file .......is not a valid installation package for the product iTunes.  Try to find the installation package iTunes64.msi in a folder from which you can install iTunes.
    That doesn't work either.  What to do?
    Dean

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

Maybe you are looking for