[Self Solved] Problems trying to get the install.exe to run

After trying for 3 days to get the install.exe to run on my new computer I eventually ran out of options. You could see, however, that in the task manager, once you clicked on the .exe that it would run for a bit, max out at ~8k and then disappear. The two things I could think of were that A. It might have been a registry error that is preventing me from running the .exe and B. that it might be a service that is blocking it. I did not want to go through the stress of re-installing windows just so I could get the install.exe to run over a hunch that my registry might be foul. Instead I performed a clean boot that would prevent a service from stopping the installation. Upon restarting I was able to run the install.exe and I finally have adobe reader running. For anyone who is not familiar with a clean boot it can be done as follows:
Pressing [Win] + r OR Start > search
and then typing "msconfig.exe" + enter will open up the system configuration screen.
then click on the "Services" tab, followed by clicking the box "Hide all Microsoft services" so that it has a checkmark inside it, followed by clicking the button "Disable All"
Your computer will then be prompted to restart
Upon launching your windows interface go to your downloads folder and then try to run the install.exe, if it works, as did mine, it would appear that a certain service was blocking it.
Hope this helps the .02% of people who actually have this problem when installing

Alternate solution: use the offline installer from http://get.adobe.com/reader/enterprise/

Similar Messages

  • I am having a problem trying to get the new version of itunes to download correctly to my laptop. I have updated my ipad to the new ios 7, and windows is showing that it has been downloaded but when I connect my ipad, it is saying I have to download itune

    I really need HELP!!! I have a laptop that runs with windows vista, and I have been having issues trying to get it to download the new version of itunes that would be compatible to the new version of ios 7 that I have already updated on my ipad. I have downloaded this three times, it shows that the download is complete, but when I connect my ipad to my laptop it is still telling me that I have to download the new version again and it will not sync with my ipad until I do. Does anyone else have this issue and can anyone help me figure out how to correct it? I would be most grateful!!

    sign out from the creative cloud and then sign back in
    Sign in, Sign out | Creative Cloud desktop app

  • Help trying to get the F_ApiWinConnectSession initialized and running in the background.

    Fellow FM Developers,
    I have the FDK8 and have been using framemaker as a processor of templates. We have successfully written a program that uses the framemaker in a user account currently logged in. In other words, USER A logs in with their account on Computer A and processes files just fine.  Now, we would like to set up a system where jobs are submitted by USER A and runs on a remote Computer B which processes the document and saves it as a PDF.
    We want to make it so users can submit a job through a web service using the .NET framework. We have tried to do this, however we are failing on one crucial part of our development. I am trying to use the single most important (asynchronis) connectivity line:
    F_ApiWinConnectSession( NULL, NULL, &ClassID );
    This is because we want to have framemaker start in the background with this execution of this service.  Unfortunately, without the GUI available this command fails.  We have obviously created a Progid and it has been registered in the registry. We did this by runnning :
    FrameMaker.exe /progid:FrameMaker.Automation.2 /auto
    Can anyone help me with trying to get framemaker to run in a background.  Is there a way to process the documents without have the GUI up and loaded and then have it process the document.
    Your help is greatly appreciated,
    Adam

    Adam,
    The server license is more tuned to the type of output that you are creating, regardless of the number of users. If you are creating content from external sources and generating a PDF in an automated way via FM, then you need a server license (period).
    Read your FM EULA carefully.
    2.2.  Limitations on Server and Network Use.  You may install one copy of  the Software on your Computer file server for the sole purpose of downloading  and installing the Software onto other Computers within your internal network up  to the Permitted Number, provided that the total number of users that are  permitted to download and install the Software from such Computer file server,  does not exceed the Permitted Number.  Except as explicitly described above, no  other network or server use is permitted under this license, including but not  limited to, using the Software either directly or through commands, data or  instructions from or to any other Computer, for internet or web hosting services  or by any user not licensed to Use this copy of the Software through a valid  license from Adobe.  For the avoidance of doubt, this Agreement does not permit  the Software to be Used in any batch-oriented environment where such Use of the  software is to produce Postscript or PDF output from data originating from any  other application, unless such Use is merely incidental to a Use clearly  permitted by the license.To obtain rights for additional server, batch oriented  or network licensing uses, you may purchase a license(s) for the FrameMaker®  Server product. The FrameMaker Server product license is available for review  at, http://www.adobe.com/products/eulas/main.html.
    This has greatly impacted the database publishing side of things. If all of  your content is completely created in FrameMaker, then you should be ok.  However, if you create or get any content outside of FrameMaker and pass it  through FM to make your documentation sets, then according to Adobe, you need to  be using the FrameServer product (for creating the PDFs).

  • Problem trying to get the program for my logon screen working

    hello.
    i have developed a simple logon program. when i try to compile the program, i get 5 errors (errors + code are shown below). what in god's name are causing these errors and how can they be fixed?
    thank you for your generous assistance.
    ----jGRASP exec: javac -g E:\CP4B Project\LogOn.java
    LogOn.java:50: cannot find symbol
    symbol: variable logOn
    logOn = null;
    ^
    LogOn.java:72: cannot find symbol
    symbol : method setVisible(boolean)
    location: class User
    setVisible(false);
    ^
    LogOn.java:83: cannot find symbol
    symbol : method setVisible(boolean)
    location: class User
    setVisible(false);
    ^
    LogOn.java:109: cannot find symbol
    symbol : method setVisible(boolean)
    location: class Administrator
    setVisible(false);
    ^
    LogOn.java:120: cannot find symbol
    symbol : method setVisible(boolean)
    location: class Administrator
    setVisible(false);
    ^
    5 errors
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class LogOn extends JFrame{
       JTextField jtfUN = new JTextField(20);
       JPasswordField jtfPW = new JPasswordField(20);
       JButton jbOK = new JButton("OK");
       JButton jbCancel = new JButton("Cancel");
       public LogOn(){
          super("Welcome to Home Entertainment");
          setSize(250, 250);
          setDefaultCloseOperation(EXIT_ON_CLOSE);
          JPanel jp = new JPanel();
          JLabel unLabel = new JLabel("Username: ");
          JLabel pwLabel = new JLabel("Password: ");
          jp.add(unLabel);
          jp.add(jtfUN);
          jp.add(pwLabel);
          jp.add(jtfPW);
          jp.add(jbOK);
          jp.add(jbCancel);
          setContentPane(jp);
          pack();
          jbOK.addActionListener(new ActionListener(){
             public void actionPerformed(ActionEvent e){
                User u = new User();
                u.doLogOn();
                u.username = jtfUN.getText().trim();
                u.password = new String(jtfPW.getPassword());
                Administrator a = new Administrator();
                a.doLogOn();
                a.username = jtfUN.getText().trim();
                a.password = new String(jtfPW.getPassword());
          jbCancel.addActionListener(new ActionListener(){
             public void actionPerformed(ActionEvent e){
                logOn = null;
                setVisible(false);
       public static void main(String[] args){
          LogOn logOn = new LogOn();
    class User{
       String username;
       String password;
       String[] userUsernameArray = {"Ann Smyth", "John Murphy"};
       String[] userPasswordArray = {"1", "2"};
       public void doLogOn(){
          int i, j;
          for(i = 0; i < userUsernameArray.length; i++){
             if(username.equals(userUsernameArray)){
    setVisible(false);
    //UserMainMenu umm = new UserMainMenu();
    //umm.setVisible(true);
    else{
    JOptionPane.showMessageDialog(null, "Error\n\nYou have entered an incorrect username and/or password\nPlease try again", null, JOptionPane.ERROR_MESSAGE);
    for(j = 0; j < userPasswordArray.length; j++){
    if(password.equals(userPasswordArray[j])){
    setVisible(false);
    //UserMainMenu umm = new UserMainMenu();
    //umm.setVisible(true);
    else{
    JOptionPane.showMessageDialog(null, "Error\n\nYou have entered an incorrect username and/or password\nPlease try again", null, JOptionPane.ERROR_MESSAGE);
    class Administrator{
    String username;
    String password;
    String[] adminUsernameArray = {"Administrator"};
    String[] adminPasswordArray = {"0"};
    public void doLogOn(){
    int k, l;
    String username;
    String password;
    String[] adminUsernameArray = {"Administrator"};
    String[] adminPasswordArray = {"0"};
    for(k = 0; k < adminUsernameArray.length; k++){
    if(username.equals(adminUsernameArray[k])){
    setVisible(false);
    //AdminMainMenu amm = new AdminMainMenu();
    //amm.setVisible(true);
    else{
    JOptionPane.showMessageDialog(null, "Error\n\nYou have entered an incorrect username and/or password\nPlease try again", null, JOptionPane.ERROR_MESSAGE);
    for(l = 0; l < adminPasswordArray.length; l++){
    if(password.equals(adminPasswordArray[l])){
    setVisible(false);
    //AdminMainMenu amm = new AdminMainMenu();
    //amm.setVisible(true);
    else{
    JOptionPane.showMessageDialog(null, "Error\n\nYou have entered an incorrect username and/or password\nPlease try again", null, JOptionPane.ERROR_MESSAGE);

    Pls. Post only once.
    I think somebody already answered your problem in your other post.

  • I am trying to get the free trial to cc but it said there seems to be a problem with the files (Error code: 205)

    I am trying to get the free trial to cc but it said there seems to be a problem with the files (Error code: 205) please help

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • I'm trying to get the ios 4.2.1 on my second generation iPod . Is there a way to install it directly on my iPod touch because my iTunes on my computer is not working. Please help Apple! I need the update. Just give me a link.

    Im trying to get the ios 4.1.2 on my iPod touch 2nd generation. Can I install it directly on my iPod . My iTunes on my computer isn't working!

    you have to have itunes installed but check out http://support.apple.com/kb/ht4623.

  • I have an older Macbook with OS/X. Tried to download iTunes 10 a few times now, but when installing I always get the same error message: Run Preinstall Script for Apple Mobile Device Support. What can I do to finalise the installation?

    I have an older Macbook with OS/X. Tried to download iTunes 10 a few times now, but when installing I always get the same error message: Run Preinstall Script for Apple Mobile Device Support. What can I do to finalise the installation?

    Thanks. Short of the sort of "generic" suggestions of restaring your system, if you haven't, and repairing disk permissions and verifying the disk, I don't have any advice right now. I'll do some research and see if I can come across anything. Meanwhile, someone else may have an idea.
    Regards.

  • When booting up I cannot get past the light blue logo with spinning disc. I have tried it with the install disc and using different keystrokes, i.e. "shift, s, c, o, " please advise. thank you in advance.

    When booting up I cannot get past the light blue logo with spinning disc. I have tried it with the install disc and using different keystrokes, i.e. "shift, s, c, o, " please advise. thank you in advance.

    The system on the original install dic is probably looking for the original video card.
    It may be possible for someone with the right skills to make an install disc for you with the driver for your new card.
    As I recall from my early days of being a Macuser, If you held down a key, (spacebar?), while starting it would open a dialog to take you through a monitor setup.

  • My Photoshop Elements does not start any more. It gives response "Photoshop elements cannot start or continue because of missing file(s). Please reinstall." How do I get the installing file again (I bought it via internet the first time december 2013?)

    My Photoshop Elements does not start any more. It gives response "Photoshop elements cannot start or continue because of missing file(s). Please reinstall." How do I get the installing file again (I bought it from Adobe via internet the first time december 2013?)

    Did you download the Basic/Free version?
    I also thought the Trial period was as long as you needed!?
    What is your Warranty and Return Policy?
    You get to use VueScan for as long as you want before you buy it, so we recommend you test it before you buy it to make sure it meets your needs.
    All sales are final and there are no refunds.
    Isn't this a bit harsh? Naah I actually prefer to solve problems, and if I offer refunds, people give up too easily. If I can't solve your problem after you send a few Problem Reports (see above), I'm happy to give a refund.
    http://www.hamrick.com/sup.html#q

  • I HAVE A HP PSC 750. I'M TRYING TO GET THE TOOL BOX TO SEE HOW MUCH INK IN MY PRINTER.

    I HAVE A HP 750. I'M TRYING TO GET THE TOOL BOX TO SEE HOW MUCH INK I HAVE IN MY PRINTER. IS THEIR A DOWNLOAD
    I CAN USE TO GET IT BACK

    The document here has a workaround for getting the ink levels.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • I'm trying to get the apps on my 3g over to my 4g with no luck

    I'm trying to get the apps on my 3g over to my 4g.  Using http://support.apple.com/kb/HT2109  , I'm having a problem at steps 6,7 & 8.  The phone appears (6), but I don' t see any tabs or a way to sync.  What am I doing wrong?

    On your iPod Touch head to Settings -> General -> Restrictions and make sure either all restrictions are off or that at least Installing Apps is Off.
    Any luck there?
    B-rock

  • Im trying to get my iCloud up and running on my airmac, i'm going to iTunes preferences and then to store like it says but the icons you click on which are suppose to be black are grey, how do i turn them on?

    Im trying to get my icloud up and running on my macbook air, im going to itunes and then preferences and then store, but these icons you turn on are grey and not black how can i turn them on?

    Try a manual install, as outlined in the link below.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

  • Trying to get the Opening and Closing Balance, 0TOTALSTCK and 0VALSTCKVAL

    Hi Experts, Good Day.
    I am developing a query for Stock Balances, Using Custom cube created with copy from 0ic_c03.
    I am trying to get the Opening and Closing Balance, based on Non-Cumulative KF - 0TOTALSTCK and 0VALSTCKVAL.
    Both The KF's Behaviour for Exception Aggregat. = Last Value
    I am using VARIABLE OFFSET as -1 to get Opening Balance, and just restriction for Closing Balance based on 0CALMONTH
    Unfortunately i am getting data for the periods which does not have data in my Cube. It is taking the total value as closing balance for the periods which we don't have transaction in the cube.
    For Ex. I have data for 09.2010 & 10.2010 a particular material, when i enter 08.2010 as input i am getting the total value of the material.
    I hope you understand the problem and solution soon.
    I will give you more explanation if needed.
    Thanks in Advance....
    Have a great Day Ahead.....
    GopalN

    Hi GopaIN,
    can you explain us process you have done about initialization of data (2LIS_03_BX, cube compression)? it seams like there was data before 09.2010 and you load it with 2LIS_03_BX data source. That data is not in cube, but just used for update markers.
    Edited by: Sasa Todorovic on Mar 25, 2011 9:48 AM

  • I am trying to get the CLIPPINGS add on for firefox. but it says it is not compatible with FirFox 8.0 whaat can I do.

    I am trying to get the CLIPPINGS add on for firefox. but when I try and download it, it says it is not compatible with FirFox 8.0. also the latest version of firfox is 3.1 but my version is 8.0 Is that right?

    There were some issues with the addons site and checking for (compatibility) updates.<br />
    It seems to be working now, so you can try again to install the extension.

  • Can't get the install CD's to boot.

    Dear all,
    I've seen topics like this but not quite the same.
    I have a Macbook Pro without anny OS on it. I'm trying to get the original version of OS X installed (10.5.2). It however refuses to boot from the CD. Actualy it boots..and restarts.. thats it. The CD i'm using is an original instalation CD. It was most likely not sold with this exact system but with the same model (its a company laptop and we have purchased about 10 at the same time all with their own CD's)
    When the macbook starts up it just asks for a bootable cd.
    Windows XP will boot/install normaly but we need OS X on the machine (next to windows).
    The CD is fine. Windws can read it and so can the mac when booting with the "option" button pressed. But select it will just cause the mac to reboot again.
    Annyone have anny ideas how to get the Instalation started?
    Kind regards,
    Marc
    Message was edited by: themac1983

    You either need the OS installer disk DVD that came with the MBP or a retail version with an OS version equal or higher than the OS that originally came with the MBP. Apparently the DVD you are using is not the correct one.

Maybe you are looking for