Install Application - TextArea inside JScrollPane

I've been working on an install application to install another one of my programs (next/accept/next/ finish type of thing) and had a couple questions and would appreciate any help anyone can give.
Some Background info:
I made images and have them display as image icons through jlabels for the buttons and background. The labels have classes applying various mouselisteners (Mousepressed, MouseEntered, MouseExited, etc) changing the images and moving from screen to screen. I have my layout set to null, not for any particular reason, but because I have no formal education in layout managers.
1) Is there a conical solution to moving through various windows? That is, right now I move through the various 'screens' with a check on an int called state, that gets incremented and decremented through forward and back buttons. I looked at some code given to us on a test by our teacher (we had to find bugs) and saw that he had implemented a fake "state" interface, with constants like "Account_State" to control where you were in the program. This seems a bit easier to read than ints, but is there a correct built in version of his states?
2) On the second screen I have a license agreement (actually required for the application that gets installed), and a checkbox. The license is held inside of a JTextArea(scroll) inside a JScrollPane(textscroll). The JScrollPane is extending in weird ways. The following is a stripped down version of my code (it runs and demonstrates the problem):
InstalleApp
import javax.swing.*;
import java.awt.*;
public class InstalleApp {
    public static void main(String args[]) {
        InstalleFrame m = new InstalleFrame();
           Container content = m.getContentPane();
        m.setDefaultCloseOperation(3);
        m.setSize(550, 400);
        m.setUndecorated(true);
        m.setVisible(true);
        m.setTitle("Install");
}InstalleFrame
import java.awt.*;
import javax.swing.*;
import javax.swing.JFrame;
import java.awt.event.*;
import java.awt.Rectangle;
import java.awt.Font;
import java.awt.BorderLayout;
import java.util.*;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import java.awt.event.ActionEvent;
import javax.swing.text.BadLocationException;
import javax.swing.JSlider;
import java.awt.Dimension;
public class InstalleFrame
    extends JFrame implements ActionListener {
  public InstalleFrame() {
    try {
      jbInit();
    catch (Exception ex) {
      ex.printStackTrace();
  public void actionPerformed(ActionEvent e) {
  JScrollPane textscroll;
  private void jbInit() throws Exception {
    this.getContentPane().setLayout(null);
    this.getContentPane().setBackground(UIManager.getColor("window"));
    background.setBounds(new Rectangle(0, 0, 550, 400));
    readcheck.setOpaque(false);
    readcheck.setText("I have read and accept the license agreement");
    readcheck.setBounds(new Rectangle(31, 357, 319, 32));
    scroll.setWrapStyleWord(true);
    scroll.setLineWrap(true);
    scroll.setText(
        "Copyright ? 2006-2007 GonZor228.com \n\nBy using or distributing this " +
        "software (or any work based on the software) you shall be deemed " +
        "to have accepted the terms and conditions set out below.\n\nGonZor228.com " +
        "(\"GonZor\") is making this software freely available on the basis " +
        "that it is accepted as found and that the user checks its fitness " +
        "for purpose prior to use.\n\nThis software is provided \'as-is\', without " +
        "any express or implied warranties whatsoever. In no event will the " +
        "authors, partners or contributors be held liable for any damages, " +
        "claims or other liabilities direct or indirect, arising from the " +
        "use of this software.\n\nGonZor will from time to time make software " +
        "updates available.  However, GonZor accepts no obligation to provide " +
        "any support to free license holders.\n\nGonZor grants you a limited " +
        "non-exclusive license to use this software for any purpose that does " +
        "not violate any laws that apply to your person in your current jurisdiction, " +
        "subject to the following restrictions: \n\n1. The origin of this software " +
        "must not be misrepresented; you must not claim that you wrote the " +
        "original software.\n2. You must not alter the software, user license " +
        "or installer in any way unless given permission to do so.\n3. This " +
        "notice may not be removed or altered from any distribution.\n4. You " +
        "may not resell or charge for the software.\n5. You may not reverse " +
        "engineer, decompile, disassemble, derive the source code of or modify " +
        "[or create derivative work from] the program without the express " +
        "permission of GonZor.\n6. You must not use this software to engage " +
        "in or allow others to engage in any illegal activity.\n7. You may " +
        "not claim any sponsorship by, endorsement by, or affiliation with " +
        "GonZor228.com\n8. You acknowledge that GonZor owns the copyright and " +
        "all associated intellectual property rights relating to the software.\n\n" +
        " This software license is governed by and construed in accordance " +
        "with the laws of Australia and you agree to submit to the exclusive " +
        "jurisdiction of the Australian courts.\n\nBy clicking the \"I agree\" " +
        "button below, you agree to these software license terms. If you disagree " +
        "with any of the terms below, GonZor does not grant you a license " +
        "to use the software ? exit the window.\n\nYou agree that by your installation " +
        "of the GonZor?s software, you acknowledge that you are at least 18 " +
        "years old, have read this software license, understand it, and agree " +
        "to be bound by its terms.\n\nGonZor reserves the right to update and " +
        "change, from time to time, this software license and all documents " +
        "incorporated by reference. You can always find the most recent version " +
        "of this software license at GonZor228.com.  GonZor may change this " +
        "software license by posting a new version without notice to you. " +
        "Use of the GonZor?s software after such change constitutes acceptance " +
        "of such changes.\n\n1.\tOwnership and Relationship of Parties.\n\nThe " +
        "software is protected by copyrights, trademarks, service marks, international " +
        "treaties, and/or other proprietary rights and laws of the U.S. and " +
        "other countries. You agree to abide by all applicable proprietary " +
        "rights laws and other laws, as well as any additional copyright notices " +
        "or restrictions contained in this software license. GonZor owns all " +
        "rights, titles, and interests in and to the applicable contributions " +
        "to the software. This software license grants you no right, title, " +
        "or interest in any intellectual property owned or licensed by GonZor, " +
        "including (but not limited to) the software, and creates no relationship " +
        "between yourself and GonZor other than that of GonZor to licensee.\n\n" +
        "The software and its components contain software licensed from " +
        "GonZor. The licensor software enables the software to perform certain " +
        "functions including, without limitation, access proprietary data " +
        "on third-party data servers as well as GonZor?s own server. You agree " +
        "that you will use the software, and any data accessed through the " +
        "software, for your own personal non-commercial use only. You agree " +
        "not to assign, copy, transfer, or transmit the software, or any data " +
        "obtained through the software, to any third party. Your license to " +
        "use the software, its components, and any third-party data, will " +
        "terminate if you violate these restrictions. If your license terminates, " +
        "you agree to cease any and all use of the software, its components, " +
        "and any third-party data. All rights in any third-party data, any " +
        "third-party software, and any third-party data servers, including " +
        "all ownership rights are reserved and remain with the respective " +
        "third parties. You agree that these third parties may enforce their " +
        "rights under this Agreement against you directly in their own name.\n\n" +
        "2.\tSupport and Software Updates.\n\nGonZor may elect to provide " +
        "you with customer support and/or software upgrades, enhancements, " +
        "or modifications for the software (collectively, \"Support\"), in its " +
        "sole discretion, and may terminate such Support at any time without " +
        "notice to you. GonZor may change, suspend, or discontinue any aspect " +
        "of the software at any time, including the availability of any software " +
        "feature, database, or content. GonZor may also impose limits on certain " +
        "features and services or restrict your access to parts or all of " +
        "the software or the GonZor228.com web site without notice or liability.\n\n" +
        "3.  \tFees and Payments.\n\nGonZor reserves the right to charge fees " +
        "for future use of or access to the software in GonZor?s sole discretion. " +
        "If GonZor decides to charge for the software, such charges will be " +
        "disclosed to you 28 days before they are applied if such fees will " +
        "affect your use of the product.\n\n4.\tDisclaimer of Warranties by " +
        "GonZor.\n\nUse of the software and any data accessed through the software " +
        "is at your sole risk. They are provided \"as is.\"  Any material or " +
        "service downloaded or otherwise obtained through the use of the software " +
        "(such as the \"plug-in\" feature) is done at your own discretion and " +
        "risk, and you will be solely responsible for any damage to your computer " +
        "system or loss of data that results from the download and/or use " +
        "of any such material or service.  GonZor, its officers, directors, " +
        "employees, contractors, agents, affiliates, assigns, and GonZor?s " +
        "licensors (collectively ?Associates?) do not represent that the software " +
        "or any data accessed there from is appropriate or available for use " +
        "outside the Australia.\n\nThe Associates expressly disclaim all warranties " +
        "of any kind, whether express or implied, relating to the software " +
        "and any data accessed there from, or the accuracy, timeliness, completeness, " +
        "or adequacy of the software and any data accessed there from, including " +
        "the implied warranties of title, merchantability, satisfactory quality, " +
        "fitness for a particular purpose, and non-infringement.\n\nIf the " +
        "software or any data accessed there from proves defective, you (and " +
        "not the Associates) assume the entire cost of all repairs or injury " +
        "of any kind, even if the Associates have been advised of the possibility " +
        "of such a defect or damages. Some jurisdictions do not allow restrictions " +
        "on implied warranties so some of these limitations may not apply " +
        "to you.\n\n5. \tLimitation of liability.\n\nThe Associates will not " +
        "be liable to you for claims and liabilities of any kind arising out " +
        "of or in any way related to the use of the software by yourself or " +
        "by third parties, to the use or non-use of any brokerage firm or " +
        "dealer, or to the sale or purchase of any security, whether such " +
        "claims and liabilities are based on any legal or equitable theory." +
        "\n\nThe Associates are not liable to you for any and all direct, incidental, " +
        "special, indirect, or consequential damages arising out of or related " +
        "to any third-party software, any data accessed through the software, " +
        "your use or inability to use or access the software, or any data " +
        "provided through the software, whether such damage claims are brought " +
        "under any theory of law or equity. Damages excluded by this clause " +
        "include, without limitation, those for loss of business profits, " +
        "injury to person or property, business interruption, loss of business " +
        "or personal information. Some jurisdictions do not allow limitation " +
        "of incidental or consequential damages so this restriction may not " +
        "apply to you.\n\nInformation provided through the software may be " +
        "delayed, inaccurate, or contain errors or omissions, and the Associates " +
        "will have no liability with respect thereto. GonZor may change or " +
        "discontinue any aspect or feature of the software or the use of all " +
        "or any features or technology in the software at any time without " +
        "prior notice to you, including, but not limited to, content, hours " +
        "of availability.\n\n6.  \tControlling Law.\n\nThis software license " +
        "and the relationship between you and GonZor is governed by the laws " +
        "of Australia without regard to its conflict of law provisions. You " +
        "and GonZor agree to submit to the personal and exclusive jurisdiction " +
        "of the courts located within Australia. The United Nations Convention " +
        "on the International Sale of Goods does not apply to this software " +
        "license.\n\n7.\tPrecedence.\n\nThis software license constitutes the " +
        "entire understanding between the parties respecting use of the software, " +
        "superseding all prior agreements between you and GonZor.\n\n8.\tSurviving " +
        "Provisions.\n\nSections 1, and 3 through 5, will survive any termination " +
        "of this Agreement.\n\n---------------------------------------------------------------------------------" +
        "---\nIf you accept the terms of the agreements, click I Agree to continue. " +
        " You must accept the agreement to download and use the software. ");
    scroll.setBounds(new Rectangle(36, 36, 478, 305));
    this.getContentPane().add(readcheck);
    readcheck.setVisible(false);
   this.getContentPane().add(scroll);
   textscroll = new JScrollPane (scroll, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
                                            JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
    textscroll.setBounds(36,36,400,400);
      getContentPane().add( textscroll );
    this.getContentPane().add(background);
  JLabel background = new JLabel();
  JCheckBox readcheck = new JCheckBox();
  JTextArea scroll = new JTextArea();
}Sorry about all the text for the agreement. I've tried a number of different things I got from searching the forums at different points in the code (setting the number of rows/columns, setting max and min sizes, etc etc) The code above that wraps the text I could have sworn I tried 3 times before it magically worked... I also tried using the awt component for textareas that had the scrollbars built in, but scrapped it after having even more difficulties with that one. I'm trying to get the textbox to only go down about 300 px and 300 px to the right. Using the graphical editor to change it produces a null pointer error at compile time(?!?). Can anyone help me to get the textbox to render as I want it to?
Edited by: rpk5000 on Jan 27, 2008 9:43 AM

for instance, boxlayout would work nicely with the installer frame (or dialog)
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.BorderFactory;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
public class InstalleFrame
    public InstalleFrame()
        try
            jbInit();
        catch (Exception ex)
            ex.printStackTrace();
    private JScrollPane textscroll;
    private JPanel contentPane = new JPanel();
    private JLabel background = new JLabel();
    private JCheckBox readcheck = new JCheckBox();
    private JTextArea scroll = new JTextArea();
    private void jbInit() throws Exception
        contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.PAGE_AXIS));
        contentPane.setBackground(UIManager.getColor("window"));
        contentPane.setBorder(BorderFactory.createEmptyBorder(15, 15, 15, 15));
        scroll.setWrapStyleWord(true);
        scroll.setLineWrap(true);
        String text = "Copyright ? 2006-2007 GonZor228.com \n\nBy using or distributing this "
                        + "software (or any work based on the software) you shall be deemed "
                        + "to have accepted the terms and conditions set out below.\n\nGonZor228.com "
                        + "(\"GonZor\") is making this software freely available on the basis "
                        + "that it is accepted as found and that the user checks its fitness "
                        + "for purpose prior to use.\n\nThis software is provided \'as-is\', without "
                        + "any express or implied warranties whatsoever. In no event will the "
                        + "authors, partners or contributors be held liable for any damages, "
                        + "claims or other liabilities direct or indirect, arising from the "
                        + "use of this software.\n\nGonZor will from time to time make software "
                        + "updates available.  However, GonZor accepts no obligation to provide "
                        + "any support to free license holders.\n\nGonZor grants you a limited "
                        + "non-exclusive license to use this software for any purpose that does "
                        + "not violate any laws that apply to your person in your current jurisdiction, "
                        + "subject to the following restrictions: \n\n\nblah, blah, blah,..."
                        + "\n\n";
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < 5; i++)
            sb.append(text);
        scroll.setText(sb.toString());
        contentPane.add(readcheck);
        contentPane.add(scroll);
        textscroll = new JScrollPane(scroll,
                JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
                JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
        textscroll.setPreferredSize(new Dimension(400, 400));
        contentPane.add(textscroll);
        JPanel bottomPane = new JPanel();
        bottomPane.setOpaque(false);
        final JButton okButton = new JButton("OK");
        final JButton cancelButton = new JButton("Cancel");
        okButton.setEnabled(false);
        readcheck.setOpaque(false);
        readcheck.setText("I have read and accept the license agreement");
        readcheck.addActionListener(new ActionListener()
            public void actionPerformed(ActionEvent e)
                JCheckBox radioBtn = (JCheckBox)e.getSource();
                if (radioBtn.isSelected())
                    okButton.setEnabled(true);                   
                else
                    okButton.setEnabled(false);
        okButton.addActionListener(new ActionListener()
            public void actionPerformed(ActionEvent e)
                // TODO: whatever needs to be done here
        cancelButton.addActionListener(new ActionListener()
            public void actionPerformed(ActionEvent e)
                SwingUtilities.getWindowAncestor(contentPane).dispose();
        bottomPane.add(readcheck);
        bottomPane.add(okButton);
        bottomPane.add(cancelButton);
        contentPane.add(bottomPane);
        //readcheck.setVisible(false);
        contentPane.add(background);
    public JPanel getContentPane()
        return contentPane;
    public static void main(String[] args)
        EventQueue.invokeLater(new Runnable()
            public void run()
                InstalleFrame install = new InstalleFrame();
                JFrame frame = new JFrame("Install");
                frame.getContentPane().add(install.getContentPane());
                frame.setDefaultCloseOperation(3);
                frame.setSize(550, 400);
                frame.setUndecorated(false);  //**
                frame.pack();  //**
                frame.setLocationRelativeTo(null); //**
                frame.setVisible(true);
}

Similar Messages

  • Error in installing applications-Not able to install any applications

    Hello, 
    I bought Blackberry Z3 on just 3 days back, 
    I am not able to install any Applications. (Example: Wikipedia, News, WhatsApp.. etc)
    After download complete it is always showing " Error in installing application"
    If i Check inside Myworld -? Active downloads,it is showing " utf8' codec can't decode bytes.
    Please let me know how to resolve this problem. 
    Thanks,
    Yogesh S

    I had the same problem what you had.
    It would throw errors like, "Unable to decode...." or "Error installing the application"
    I was neither able to download any applications from Blackberyy World nor sideload any android apps.
    I use AirTel network.
    Try removing the SIM card and install the application using Wi-Fi.
    It worked for me smoothly when I did the above.

  • Apex textarea inside jquery accordion

    hello,
    can anyone please help me how to include a apex textarea inside jquery accordion.

    i used jquery accordion i just copy n paste this code into my apex application.
    <!DOCTYPE html>
    <html>
    <head>
    <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
    <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
    <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
    <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.accordion.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
    $("#accordion").accordion();
    </script>
    </head>
    <body style="font-size:62.5%;">
    <div id="accordion">
         <h3>Section 1</h3>
         <div>
              <p>
              Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer
              ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit
              amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut
              odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.
              </p>
         </div>
         <h3>Section 2</h3>
         <div>
              <p>
              Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet
              purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor
              velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In
              suscipit faucibus urna.
              </p>
         </div>
         <h3>Section 3</h3>
         <div>
              <p>
              Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis.
              Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero
              ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis
              lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.
              </p>
              <ul>
                   <li>List item one</li>
                   <li>List item two</li>
                   <li>List item three</li>
              </ul>
         </div>
         <h3>Section 4</h3>
         <div>
              <p>
              Cras dictum. Pellentesque habitant morbi tristique senectus et netus
              et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in
              faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia
              mauris vel est.
              </p>
              <p>
              Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus.
              Class aptent taciti sociosqu ad litora torquent per conubia nostra, per
              inceptos himenaeos.
              </p>
         </div>
    </div>
    </body>
    </html>
    i am getting the accordion but i need to put textarea areas in each section.when i create a text area i m not able to see any region in accordion.

  • Cannot install Application Manager: "Installer failed to initialize"

    Hello,
    Cannot install Application Manager.  I get this error message: "Installer failed to initialize".
    Please help,
    g2598m

    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Can a standard user install applications?

    I've been told that when a standard user installs applications, he must provide a admin user name and password, which presesumably he wouldn't have.  If the admin user is standing near and does provide that info, then great, a standard user is able to then install the application, right?
    My real question: Would that application be available to all of the users on that mac or just to the standard user?  My research has lead me to contradictory answers and a fundamental, lingering question:  If the admin account's user name and password were provided when logged into the standard account, shouldn't that application behave the same as an app that was installed when logged into the admin acccount?  And, if that's true, isn't the purpose of a standard account somewhat less valuable than we think?  Any insight would be of much help, thanks!

    To install an app on a standard user, you need an administrator user name and password. If not, it won't work.
    When you install an app, it's installed by default in /Applications, a folder where all users can access, so your apps are available for all users. However, most of the users have got an Applications folder inside their user folder (~/Applications), so you can put here the apps you want to use only with one user account. You can choose where you want to put your applications, depending on with what users you want to use the application

  • How do I not let certain users run an installed application?

    I have a computer lab at a school that is running Snow Leopard and a Snow Leopard server.  Is there a way in Workgroup Manager to disallow the student group from running an installed application?  I know that I can "always allow" all the rest of the applications, but there is just one that I specifically want to disallow and I don't want to have to be constantly updating an application whitelist.

    Hang an ACL off the bundle and — presuming your students are all associated with a group I'll refer to as "student" group — use the ACL to deny access to anybody in "student"?  That's sort-of and sort-of-not WGM, but it'll work.

  • TS2446 i have a problem in my account every time i want to install application from app Store on my iphone a message shows that my Apple ID has been disabled, what is the problem? what can i do ?

    i have a problem in my account every time i want to install application from app Store on my iphone a message shows that my Apple ID has been disabled, i creat a new password and still that message shoes ,what is the problem ?can you help me please???!!!!

    If your account is disabled then you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    You might then need to log out of your account on your phone by tapping on your id in Settings > iTunes & App Store and then log back in so as to 'refresh' the account on it
    If that doesn't fix it then you might need to contact iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • The tool was unable to install Application Server Role, Web Server (IIS) Role.

    Hi,
    After running the prerequisiteinstaller.exe of SharePoint 2013 I am getting the below error in the logs
    The tool was unable to install Application Server Role, Web Server (IIS) Role.
    Web server role,application server role  is already there in the server.
    Ran the necessary power shell commands but still not able to proceed with this error.
    Please share your inputs to cross over this issue.
    Regards,
    Sudheer
    Thanks & Regards, Sudheer

    HI Sudheer,Please check the link below that explains the solution for the same issues.
    http://expertsharepoint.blogspot.de/2014/01/the-tool-was-unable-to-install.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • SharePoint 2013 preinstaller error - The tool was unable to install Application Server Role, Web Server (IIS) Role.

    I have been banging my head over and over searching for the fix and nothing has worked. Google used to be my friend. I am having doubts.
    Windows 2012 Server with IIS installed during the server creation using VMware Vshpere. Here is the log from the SP prep tool.
    2014-06-23 10:13:12 - Processor architecture is (9)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Common Startup
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-06-23 10:13:12 - Trying to remove the startup task if there is any.
    2014-06-23 10:13:12 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-06-23 10:13:12 - Error: Startup task doesn't exist. This is not a continuation after a restart.
    2014-06-23 10:13:12 - Locating the following command line arguments file:
    2014-06-23 10:13:12 - C:\sp2013\PrerequisiteInstaller.Arguments.txt
    2014-06-23 10:13:12 - Error: This file does not exist
    2014-06-23 10:13:12 - Details of the current operating system:
    2014-06-23 10:13:12 - Major version number of the operating system:  (6)
    2014-06-23 10:13:12 - Minor version number of the operating system:  (2)
    2014-06-23 10:13:12 - Build number of the operating system:  (0X23F0=9200)
    2014-06-23 10:13:12 - Major version number of the latest Service Pack:  (0)
    2014-06-23 10:13:12 - Minor version number of the latest Service Pack:  (0)
    2014-06-23 10:13:12 - Platform ID of the operating system:  (2)
    2014-06-23 10:13:12 - Product suites available on the operating system:  (0X110=272)
    2014-06-23 10:13:12 - Product type of the operating system: VER_NT_SERVER
    2014-06-23 10:13:12 - Product type:  (7)
    2014-06-23 10:13:12 - OS type:  (0)
    2014-06-23 10:13:12 - Configuring the application's property sheet...
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Management Framework 3.0
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - PowerShellVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 4.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft .NET Framework 4.5
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - Install
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Version
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 4.5.51641
    2014-06-23 10:13:12 - A post release .NET 4.5 is installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 -
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 6.1.7600.0
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-06-23 10:13:12 - Reading version of the following file...
    2014-06-23 10:13:12 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-06-23 10:13:12 - The version is...
    2014-06-23 10:13:12 - 1.0.3010.0
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Version
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 10.51.2500.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Server AppFabric
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - ProductVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.1.2106.32
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - ProductVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.1.2106.32
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - ProductVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.1.2106.32
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - DCC
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - CacheClient is Installed.
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - DCS
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - CacheService is Installed.
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - DCA
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - CacheAdmin is Installed.
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 -
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 2.0.1230.0
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft Information Protection and Control Client
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 -
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.0.959.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft WCF Data Services 5.0
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Version
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 5.0.51212.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - IsInstalled
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:19 - Beginning download/installation
    2014-06-23 10:13:19 - Created thread for installer
    2014-06-23 10:13:20 - "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\2\PreA98B.tmp.XML"
    2014-06-23 10:13:20 - Error: Unable to install (2)
    2014-06-23 10:13:20 - Error: [In HRESULT format] (-2147024894)
    2014-06-23 10:13:20 - Last return code (2)
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - Flags
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - PendingFileRenameOperations
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-06-23 10:13:20 - Reading the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-06-23 10:13:20 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2014-06-23 10:13:20 - Last return code (2)
    2014-06-23 10:13:20 - Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any
    command line options.
    2014-06-23 10:13:20 - Cannot retry
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Management Framework 3.0
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - PowerShellVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 4.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft .NET Framework 4.5
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - Install
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - Version
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 4.5.51641
    2014-06-23 10:13:20 - A post release .NET 4.5 is installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 -
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 6.1.7600.0
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-06-23 10:13:20 - Reading version of the following file...
    2014-06-23 10:13:20 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-06-23 10:13:20 - The version is...
    2014-06-23 10:13:20 - 1.0.3010.0
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - Version
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 10.51.2500.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Server AppFabric
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - ProductVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.1.2106.32
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - ProductVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.1.2106.32
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - ProductVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.1.2106.32
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - DCC
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - CacheClient is Installed.
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - DCS
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - CacheService is Installed.
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - DCA
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - CacheAdmin is Installed.
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 -
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 2.0.1230.0
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft Information Protection and Control Client
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 -
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.0.959.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft WCF Data Services 5.0
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - Version
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 5.0.51212.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - IsInstalled
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:16:23 - Opening log file
    2014-06-23 10:16:23 - Opened action for user
    2014-06-23 10:16:23 - C:\Users\ADMINI~1\AppData\Local\Temp\2\prerequisiteinstaller.2014.06.23-10.13.12.log

    It looks like you may have extracted the files to C:\sp2013. Can you try installing from a mounted ISO instead? Can you also validate that this is Server 2012 and not 2012 R2?
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Prerequisiteinstaller.exe error - unable to install Application Server Role, Web Server (IIS) Role

    Windows Server 2012 R2 running on Hyper-V VM.  File services, App server & IIS roles installed
    SQL Server 2012 installed
    Tried:
    kb 2765260 method 1 which is kb 2771431 which ends with "not applicable to computer"
    kb 2765260 method 2 with no effect (this was power shell commands for PC's connected to the internet)
    One post suggested "aspnet_regii - enable -i" but my OS doesn't have aspnet_regii on it (not sure what that implies)
    One post suggested ServerManagerCmd.exe needed to be installed which sounds true as shown below (but where do I find this exe?)
    There are some errors in the log file,  I only included the portions where the errors are listed.  The initial lines are at the top of the log file, then I skipped to the section where the other errors were.  I can include the whole log if
    it becomes necessary.
    9:47:11 Processor architecture is (9)
    9:47:11 Reading the following string value/name...
    9:47:11 Common Startup
    9:47:11 from the following registry location...
    9:47:11 SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    9:47:11 The value is...
    9:47:11 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    9:47:11 Trying to remove the startup task if there is any.
    9:47:11 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    9:47:11 Error: Startup task doesn't exist. This is not a continuation after a restart.
    9:47:11 Locating the following command line arguments file:
    9:47:11 E:\PrerequisiteInstaller.Arguments.txt
    9:47:11 Error: This file does not exist
    9:47:11 Details of the current operating system:
    9:47:11 Check whether the following prerequisite is installed:
    9:47:11 Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    9:47:11 Reading the following DWORD value/name...
    9:47:11 IsInstalled
    9:47:11 from the following registry location...
    9:47:11 SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    9:47:17 Beginning download/installation
    9:47:17 Created thread for installer
    9:47:17 "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\1\PreE0DB.tmp.XML"
    9:47:17 Error: Unable to install (2)
    9:47:17 Error: [In HRESULT format] (-2147024894)
    9:47:17 Last return code (2)
    9:47:17 Reading the following DWORD value/name...
    9:47:17 Flags
    9:47:17 from the following registry location...
    9:47:17 SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    9:47:17 Reading the following string value/name...
    9:47:17 PendingFileRenameOperations
    9:47:17 from the following registry location...
    9:47:17 SYSTEM\CurrentControlSet\Control\Session Manager
    9:47:17 Reading the following registry location...
    9:47:17 SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    9:47:17 Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    9:47:17 Last return code (2)
    9:47:17 Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any command line options.
    9:47:17 Cannot retry
    I'm presuming the first 2 errors are OK and just indicate optional startup modes for prerequisiteinstaller.exe
    The 2nd set of errors seems more serious.  I don't see ServerManagerCmd.exe on my PC that's listed in the error
    I don't understand the last error which I'm supposing triggered the listed error even though there are other errors in the log.
    Many of the existing posts don't match the configuration I'm using, and the ones that do match didn't seem to provide a usable answer.  Any help is appreciated.  Do these problems exist using Sever 2012 Standard?  I will try that, but would
    like to resolve the issue here with R2.
    Thanks.
    Best Regards,
    Alan

    ServerManagerCMD.exe is a deprecated utility and (as far as I know) is only found on Server 2008 versions, so I'm surprised it's needed for the preinstaller.  Are you trying to install SharePoint 2010?
    Running this page through Google Translate should give you an clearer idea on getting this installed.
    http://blog.hand-net.com/sharepoint/2010-06-10-error-lors-de-linstallation-des-office-web-apps-2010-sur-windows-7.htm
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Nokia C5-03 move newly installed application to me...

     Hi,
    How do you move your installed application from phone memory to memory card in Nokia C5-03
    Regards,
    S

    Hello Shareen, the application once installed in your phone cannot be moved to memory card. The only option is to remove the application from phone memory and then install it to your memory card.
    Nokia C7

  • Error while installing applications

    Hi
    I am getting an error while installing applications in snow leopard. I got this error couple of times while I was installing different applications. Below is the details of the error.
    System extension cannot be used
    (The system extension "/System/Library/Extensions/CDSDAudioCaptureSupport.kext" was installed improperly and cannot be used. Please try reinstalling it, or contact the product's vendor for an update")
    Can anyone tell me how to resolve this issue. I tried reinstalling the applications. But I got the same error.

    in general, such error means that you have an app that installed an incompatible with SL extension. it has to be either removed or updated.
    there have been a number of posts about the particular error you are seeing. see this one for example
    http://discussions.apple.com/thread.jspa?messageID=10367113&#10367113
    it seems that the culprit in your case is an incompatible version of Toast. get up updated Toast version
    http://www.roxio.com/enu/support/toast/software_updatesv10.html

  • Can't Transfer App to iPod? iPod must have Installing Applications ON

    If you can't transfer iTunes app to iPod or check the iTunes box for "Automatically Install New Apps", make sure your iPod has the setting for "Installing Applications" set to ON. (Settings --> General --> Restrictions --> Installing Applicatons == "ON").
    I had wrongly assumed this item setting applied to installation of iPod Apps directly from the Internet, not through the PC. I was wrong. Others might need to know this as well.

    The Restrictions applies to both direct download and syncing.

  • OSD task sequence fails to install application on workgroup computers

    Environment:
    Windows Server 2008 R2 Standard, SP1
    SCCM 2012 R2
    Issue:
    OSD TS fails to install applications from local DP on Windows 8.1 x86 workgroup computers. Same applications install fine from OSD/TS on domain computers. A standard push installs fine when deployed outside of OSD/TS to workgroup, or domain computer.
    - “SMSMP=managementpoint.domain.com” is included in ‘Setup Windows and ConfigMgr’ installation poperties
    - “Allow clients to connect anonymously” enable on DP system role, HTTP client communication
    - Network Access Account is configured and authentication is confirmed
    - Have confirmed no overlapping boundaries
    - IIS anonomys and Windows authentication is enabled for SMS_DP_SMSPKG$, anon authentication creds set to "Specific user: IUSR"
    After OSD deployment to workgroup computer completes -
    AppEnforce.log is missing
    smsts.log
    App install failed.
    Setting TSEnv variable '_TSAppInstallStatus'='Error'
    Setting TSEnv variable 'SMSTSInstallApplicationJobID__ScopeId_93E0532F-C5CA-4078-AE13-2BF543602863/Application_486d99ca-817a-4600-889e-50f8e4f91592'=''
    Completed installation job.
    Step 3 out of 3 complete
    Install application action failed: 'Microsoft_Office_Professional_2013_v15.0.4420.1017_CA-copy'. Error Code 0x80004005
    CITaskMgr.log
    State transition to (Failure), Error(0x87d00222) : CITask(ScopeId_93E0532F-C5CA-4078-AE13-2BF543602863/DeploymentType_f7f47522-3654-43b0-95ef-55198d957bdf.8..Install.ContentDownload)
    Initiating task ContentDownload for CI ScopeId_93E0532F-C5CA-4078-AE13-2BF543602863/DeploymentType_5982c24d-07f4-4121-8aa4-4f65a8b7aeb6.15 (Microsoft_Office_Professional_2013_v15.0.4420.1017_CA_x86_P_PW) for target: , consumer: {634F5894-5AB1-4D48-83F7-603E94FE1F3F}
    Initiating content download : CITask(ScopeId_93E0532F-C5CA-4078-AE13-2BF543602863/DeploymentType_5982c24d-07f4-4121-8aa4-4f65a8b7aeb6.15..Install.ContentDownload)
    State transition to (InProgress), Param(0) : CITask(ScopeId_93E0532F-C5CA-4078-AE13-2BF543602863/DeploymentType_5982c24d-07f4-4121-8aa4-4f65a8b7aeb6.15..Install.ContentDownload)
    State transition to (InProgress), Param(0) : CTaskConsumer(ScopeId_93E0532F-C5CA-4078-AE13-2BF543602863/DeploymentType_5982c24d-07f4-4121-8aa4-4f65a8b7aeb6.15.{CC8A099F-8EC4-4484-9191-53FFC1775D18})
    Successfully initiated contents download request {5237AC77-651A-4723-AF91-78A1C0497DBD} : CITask(ScopeId_93E0532F-C5CA-4078-AE13-2BF543602863/DeploymentType_5982c24d-07f4-4121-8aa4-4f65a8b7aeb6.15..Install.ContentDownload)
    Release task ContentDownload for CI ScopeId_93E0532F-C5CA-4078-AE13-2BF543602863/DeploymentType_5982c24d-07f4-4121-8aa4-4f65a8b7aeb6.15 for target: , consumer {634F5894-5AB1-4D48-83F7-603E94FE1F3F}
    Release task ContentDownload for CI ScopeId_93E0532F-C5CA-4078-AE13-2BF543602863/Application_486d99ca-817a-4600-889e-50f8e4f91592.22 for target: , consumer {502180D3-CA3B-4657-AD32-D43F952A6576}
    Release task ContentDownload for CI ScopeId_93E0532F-C5CA-4078-AE13-2BF543602863/RequiredApplication_486d99ca-817a-4600-889e-50f8e4f91592.22 for target: , consumer {1A485BC4-DD0C-4659-B034-8D7F9B436B3A}
    State transition to (Failure), Error(0x87d00222) : CITask(ScopeId_93E0532F-C5CA-4078-AE13-2BF543602863/DeploymentType_5982c24d-07f4-4121-8aa4-4f65a8b7aeb6.15..Install.ContentDownload)
    ContentTransferManager.log
    CTM job {1964A4E6-DC01-4A04-983D-AAFD5FB2CA5E} (corresponding DTS job {901A1D57-D363-45FE-A4F4-8509F5556D53}) started download from 'http://HOUMGMT49.APACHECORP.COM/SMS_DP_SMSPKG$/Content_ed232f49-224b-48cc-9c01-0ff31bae851e.1' for full content download.
    CTM job {1964A4E6-DC01-4A04-983D-AAFD5FB2CA5E} entered phase CCM_DOWNLOADSTATUS_DOWNLOADING_DATA
    CTM job {1964A4E6-DC01-4A04-983D-AAFD5FB2CA5E} entered phase CCM_DOWNLOADSTATUS_DOWNLOADING_DATA
    CTM job {1964A4E6-DC01-4A04-983D-AAFD5FB2CA5E} entered phase CCM_DOWNLOADSTATUS_DOWNLOADING_DATA
    CTM job {1964A4E6-DC01-4A04-983D-AAFD5FB2CA5E} entered phase CCM_DOWNLOADSTATUS_DOWNLOADING_DATA
    CTM encountered error processing reply from DTS. Code 0x87d00215
    Cancelled CTM job {1964A4E6-DC01-4A04-983D-AAFD5FB2CA5E}
    Two workarounds below (Not acceptable solutions)
    *I can add a pause script after Setup Windows and ConfigMgr sequence, wait 5-10 minutes and the applications will install. I assume this is because the CM client has time to fully provision.
    * I can add the anon ‘IUSR’ account to the local administrators group on the DP and all applications install (without the pause script mentioned above). I can reproduce the issue repeatedly by removing and adding the anon account.
    Any help with this would be greatly appreciated…
    Also, I come from a CM 2007 background and somewhat new to CM 2012. Should WebDAV and/or URL Authorization be installed and configured on the DP? According to MS tech support “No”. However, I’ve seen several SCCM 2012 guides on the web that say it should
    be installed.
    Regards
    David K. Harrison

    Locationservices.log, CIDownloader.log, CIagent.log, DataTransferService.log also need to be checked. We need to find out what credential the Client trys to use when it downloads content from DP.
    Juke Chou
    TechNet Community Support

  • Why does lightroom no longer show up as installed application in creative cloud

    I installed Lightroom 5.6 on my Mac and it works fine. However since yesterday it does not show up any longer as installed application in the creative cloud app, so I can't upate to 5.7.

    Check your language setting in the CC app. Perhaps you switched it around and the app wants to reinstall everything. otehrwise run the cleaner tool and do a reinstall.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Mylenium

Maybe you are looking for

  • Create Accessible Forms in Acrobat Pro XI/Forms Central

    Hello FormCentral Development Team - I read a previous thread that FormsCentral does not create Accessible Forms (Section 508 or WCAG 2.0) and must be made accessible in Acrobat Pro XI by a series of steps in the software. However, when I tried to fo

  • From iPad 3 to iPad Mini?

    hi, i just got rid of my iPad 3. i'm planning to get an iPad Mini when the new genartion is available. i backed up my iPad 3 to iCloud. i'd like to have my (future) iPad Mini set up exactly as my iPad 3. is it possible? if somebody has any idea or ex

  • Removing an Application Module form the Pool in a JSP Page

    I am getting the following error: JBO-30003: The application pool (dpi.src.business.srcSchReportAppModule.srcSchReportAppModuleLocal) failed to checkout an application module due to the following exception: oracle.jbo.DMLException: JBO-26066: Error d

  • No matching records found G/L Account at Sales Order

    Hi All, Is there a way to overcome error message u201CNo matching records found G/L Account (OACT (ODBC-2028)message131-183)u201D at documents such as Purchase Sales Order? Thanks in advance Vangelis

  • Mavericks doesn't mount my Time Machine backup drive

    Since I downloaded and installed Mavericks, it can't find my external Time Machine backup drive. Not found by disk utilites - not on my desk top.