Instcoll.exe claims wrong minor MSSQL Version during WAS 6.4 install

Everytime I try to apply the instcoll.exe patch on my Database Server (MSSQL 2000 SP3) the patch states that it needs 8.0.780 instead of 8.0.760 to make the nesessary changes in order to install SAP.
Is there a another version of instcoll.exe that works properly? Or has anyone got a different approach to get the Unicode format corrected?
Thanks in advance,
Elmar

Please refer OSS No. 608651, 600027.
They will help you in installing correct collation and hotfix and guide you with proper URL's to download the hotfix.
Also, Try https://websmp105.sap-ag.de/swcenter-3pmain -> select MS sql server. here you will find all relevant patches for SQL server 2000. ( you will be asked for marketplace ID to login).
Thanks,
rohin aggarwal

Similar Messages

  • Wrong CAP file version error message

    I'm trying to write a loader application that will send a CAP file into JavaCard, and then install it automatically.
    I have developed my JavaCard Applet by using Eclipse3.1.0 and JCOP30.
    After running my JavaCard Applet by Eclipse, I got its CAP file in folder [b\bin\FVSCardPkg\javacard\[/b]
    But when I run my loader application with this CAP file, the error message will display:
    EX: msg Wrong CAP file version, class class com.ibm.jc.JCException
    Wrong CAP file version
         at com.ibm.jc.CapFile.parseHeader(Unknown Source)
         at com.ibm.jc.CapFile.readCapFile(Unknown Source)
         at com.ibm.jc.CapFile.<init>(Unknown Source)
         at LoaderPkg.loader.load(loader.java:35)
         at LoaderPkg.loader.main(loader.java:20)
    This is my loader application source code:
    import java.io.*;
    import com.ibm.jc.*;
    import com.ibm.jc.terminal.*;
    *  Sample /**
    *  Sample loader. Demonstrates how to use the offcard API to download
    *  a cap-file on a JCOP41V22 Engineering sample card and listing of applets loaded will
    * follow.
    public class loader{
         private final static String termName = "pcsc:4"; // Real card
    //     private final static String termName = "Remote"; // Simulator
         protected static final byte[] JCOP_CARD_MANAGER_AID = { (byte) 0xa0, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00};
         protected static final byte defaultInstallParam[] = { -55, 0 };
         static String[] capFileName={"D:/MyCardPkg.cap"};
         public static void main(String[] args){
              try{
                   loader l = new loader();
                   l.load();
              }catch(Exception e){
                   System.err.println("EX: msg " + e.getMessage() + ", class " + e.getClass());
                   e.printStackTrace(System.err);
              System.exit(0);
              //Likewise for simulation, be patient the port takes time to close.
              //Use command line "netstate" to check the disapperance of the port before
              // activating JCShell command to read the simulated card.
         private loader(){}
         private void load() throws Exception{
              CapFile capFile = new CapFile(capFileName[0], null);
              System.out.println("Package name: " + capFile.pkg);
              byte[][] applets = capFile.aids;
              if ((applets == null) || (applets.length == 0)){
                   throw new RuntimeException("no applets in cap file");
              // Get connection to terminal, take note that jcop.exe is required to be activated
              // in simulation mode.
              System.out.println("Open terminal ...");
              //Make sure that the simulator jcop.exe is activated before unmarking this satement
              //Remember to delete the downloaded applet before running otherwise error is
              //expected if the simulator finds the existence of the applet with the
              //same pakage name ID and AID
              //Issue /close command at "cm" prompt if the card is in use,, ie it should
              //have "-" prompt. Be patient that the port takes time to close. Use command line
              //"netstate" to check the disapperance of the port before running.
              // pcsc:4=Card Terminal  Or  Remote=LocalHost Terminal
              JCTerminal term = JCTerminal.getInstance(termName, null);
              //For real JCOP41V22 card, please unmark this statement and delete the downloaded
              //applet before running. Error expected if the card finds the existence of the applet
              //with the same pakage name ID and AID
              //Issue /close command at "cm" prompt if the card is in use,, ie it should
              //have "-" prompt.
              term.open();
              // Add in this statement for real card which requires some response time
              term.waitForCard(5000);
              // Create a logging terminal spitting out the APDUs on standard out
              TraceJCTerminal _term = new TraceJCTerminal();
              _term.setLog(new PrintWriter(System.out));
              _term.init(term);
              term = _term;
              // Get JavaCard representative, passing NULL resets card and returns ATR
              System.out.println("Get card ...");
              JCard card = new JCard(term, null, 2000);
              // Get the off-card representative for the card manager and use it to
              // select the on-card CardManager
              System.out.println("Select card manager ...");
              CardManager cardManager = new CardManager(card, CardManager.daid);
              cardManager.select();
              // For downloading something, we have to be authenticated to card manager.
              // For this, the keys must be set. The keys to use should of course
              // be configurable as well.
              byte[] dfltKey = c2b("404142434445464748494a4b4c4d4e4f");
              cardManager.setKey(new OPKey(255, 1, OPKey.DES_ECB, dfltKey));
              cardManager.setKey(new OPKey(255, 2, OPKey.DES_ECB, dfltKey));
              cardManager.setKey(new OPKey(255, 3, OPKey.DES_ECB, dfltKey));
              cardManager.setKey(new OPKey(1, 1, OPKey.DES_ECB, c2b("707172737475767778797a7b7c7d7e7f")));
              cardManager.setKey(new OPKey(1, 2, OPKey.DES_ECB, c2b("606162636465666768696a6b6c6d6e6f")));
              cardManager.setKey(new OPKey(1, 3, OPKey.DES_ECB, c2b("505152535455565758595a5b5c5d5e5f")));
              System.out.println("init Update ...");
              cardManager.initializeUpdate(255,0);
              System.out.println("Authenticate to card manager ...");
              cardManager.externalAuthenticate(OPApplet.APDU_CLR);
              // And load the cap-file, do not forget to call installForLoad
              System.out.println("Loading cap-file ...");
              byte[] cardManagerAid = cardManager.getAID();
              cardManager.installForLoad(capFile.pkgId,0, capFile.pkgId.length, cardManagerAid, 0, cardManagerAid.length, null, 0, null, 0, 0, null, 0);
              cardManager.load(capFile, null, CardManager.LOAD_ALL, null, cardManager.getMaxBlockLen());
              byte[] capaid = capFile.aids[0];
              System.out.println("Finished loading !");
              // Install applet, we try to install the first applet given in the
              // cap file, and try to instantiate it under the same AID as given for its
              // representation in the cap file. No installation data is passed.
              System.out.println("Installing applet ...");
              cardManager.installForInstallAndMakeSelectable(capFile.pkgId, 0, capFile.pkgId.length, capaid,0, capaid.length, capaid, 0, capaid.length, 0, defaultInstallParam, 0, defaultInstallParam.length, null, 0);
              System.out.println("Install succeeded!");
              // synchronize state with on-card card manager
              System.out.println("Update!");
              cardManager.update();
              // Print information regarding card manager, applets and packages on-card
              JCInfo info = JCInfo.INFO;
              System.out.println("\nCardManager AID : " + JCInfo.dataToString(cardManager.getAID()));
              System.out.println("CardManager state : " + info.toString("card.status", (byte) cardManager.getState()) + "\n");
              //Echountered error 6A 86 with this statement:Object[] app = cardManager.getApplets(CardManager.GET_APPLETS,
              //CardManager.CVM_FORMAT_HEX, true);
              //Solved the bug by playing the integers in arg0 and arg1.
              Object[] app = cardManager.getApplets(1, true);
              if (app == null) {
                   System.out.println("No applets installed on-card");
              } else {
                   System.out.println("Applets:");
                   for (int i = 0; i < app.length; i++) {
                        System.out.println(info.toString("applet.status", (byte) ((OPApplet) app).getState()) + " " + JCInfo.dataToString(((OPApplet) app[i]).getAID()));
              // List packages on card
              // Encountered error with this statement:Object[] lf = cardManager.getLoadFiles(CardManager.CVM_FORMAT_HEX, true);
              // Solved the bug by setting arg0 = 0,
              Object[] lf = cardManager.getLoadFiles(true);
              if (lf == null) {
                   System.out.println("No packages installed on-card");
              } else {
                   System.out.println("Packages:");
                   for (int i = 0; i < lf.length; i++) {
                        System.out.println(info.toString("loadfile.status", (byte)((LoadFile) lf[i]).getState()) + " " + JCInfo.dataToString(((LoadFile) lf[i]).getAID()));
              term.close();
         static String numbers = "0123456789abcdef";
         private byte[] c2b(String s) {
              if (s == null) return null;
              if (s.length() % 2 != 0) throw new RuntimeException("invalid length");
              byte[] result = new byte[s.length() / 2];
              for (int i = 0; i < s.length(); i += 2) {
                   int i1 = numbers.indexOf(s.charAt(i));
                   if (i1 == -1) throw new RuntimeException("invalid number");
                   int i2 = numbers.indexOf(s.charAt(i + 1));
                   if (i2 == -1) throw new RuntimeException("invalid number");
                   result[i / 2] = (byte) ((i1 << 4) | i2);
              return result;
    How to solve this problem?
    Thank you in advance.

    I'm not understanding if your cap file is in "b\bin\FVSCardPkg\javacard\", then why are you loading "D:/MyCardPkg.cap"?
    The issue isn't with your off card application, but the cap file version. Look at the cap file components in JCVM specification. I believe it's the Header component. The major, minor should match your card but not greater. In other words, your can't load a 2.2 on a 2.1 card, but a 2.1 can load on a 2.2

  • Need to Install Safari 6.0.2 on a white Intel core duo iMac. Had to throw out 6.0.3 because of conflict with required software. Downloaded wrong version that was for Mountain lion (I am running 10.7.5). It installs but won't open.

    Need to Install Safari 6.0.2 on a white Intel core duo iMac. Had to throw out 6.0.3 because of conflict with required software. Downloaded wrong version that was for Mountain lion (I am running 10.7.5). It installs but won't open, says it is for Mountian Lion.
    Of course I can't throw it away since I get a message it's part of the sytem. I can show package contents and throw those away, but evidently not a good idea!!

    Need to Install Safari 6.0.2 on a white Intel core duo iMac. Had to throw out 6.0.3 because of conflict with required software. Downloaded wrong version that was for Mountain lion (I am running 10.7.5). It installs but won't open, says it is for Mountian Lion.
    Of course I can't throw it away since I get a message it's part of the sytem. I can show package contents and throw those away, but evidently not a good idea!!

  • I have used Firefox on my computer for several years. Today, after upgrading to the new version, I was not able to open Firefox. I have tried several times uninstalling and re-downloading Firefox. It still will not open! What is wrong?

    I have used Firefox on my computer for several years. Today, after upgrading to the new version, I was not able to open Firefox. I have tried several times uninstalling and re-downloading Firefox. It still will not open! Is the new version not compatible with Windows Vista?

    I hope that link points to mozilla.com or mozilla.org
    You will have to close firefox.exe with the Windows Task Manager from the "Processes" tab of the WTM since you don't have a widow to close.
    The best way to close Firefox is through File > Exit, for those who stuck with the "Firefox" button click on the Firefox button then Exit. It is not perfect but it is a lot better than just closing the window with the "X" in the upper right corner

  • Change Production version during creation of Process Order COR1

    Hi,
    Scenario:
    Based on the entered Material, Plant and Order type system need to trigger a popup asking the user to select the Production Version. This should happen before clicking on SAVE button, so that all the values will be populated correctly based on the changed VERID.
    I did not find a user exit that enables to change the Production Version (VERID) value. So I thought of displaying the popup in the user exit EXIT_SAPLCOZF_003 which will be triggered before initial screen appears, export the selected value and pass it to a User Exit or BADI where VERID can be changed. But cannot find a user exit to do it.
    Please help me find a User Exit or BADI to change the Production Version during creation of Process Order using COR1 transaction before clicking on SAVE button.
    Thanks,
    Manoj.

    Hi Manoj,
    So - almost four years later - I saw your post and I saw myself in the very same situation as you did...
    I found a solution for those who wants to change the production version of the production order from the sales order creation: create an enhancement in the function module 'MD_VERSION_SELECTION' and you are good to go.

  • Hello Everyone. I have an older version of aperture, aperture 2, that I wanted to install on my MAC. I attempted the installation, and during the install there was a check to see if my computer was capable of installing  the software, which it was.

    Hello Everyone. I have an older version of aperture, aperture 2, that I wanted to install on my MAC. I attempted the installation, and during the install there was a check to see if my computer was capable of installing  the software, which it was. After the install completed I tried running the software, and I got a message telling me I can't run this version with my operating system. Does anyone know why I can't run the aperture software, and why I was allowed to install it without some notification.

    Hello Everyone. I have an older version of aperture, aperture 2, that I wanted to install on my MAC. I attempted the installation, and during the install there was a check to see if my computer was capable of installing  the software, which it was. After the install completed I tried running the software, and I got a message telling me I can't run this version with my operating system. Does anyone know why I can't run the aperture software, and why I was allowed to install it without some notification.

  • Kodo.util.FatalDataStoreException: Wrong database file version

    Hi,
    I am using Kodo JDO 3.0.2 together with HSQLDB (non-cached, same process).
    It
    runs fine. However, after having used a SQL tool such as Aqua Data Studio
    to
    inspect the database my Java code complains with the message
    "kodo.util.FatalDataStoreException: Wrong database file version". I have
    to
    rebuild the database and extend my classes again to get rid of this error.
    Is there some information in the database script that does not survive the
    inspection with the SQL tool? How can I work around this?
    Thanks for your help
    --Bruno

    Marc,
    It was indeed a version mismatch with my hsqldb libs. My SQL Tool used
    version 1.7.2 whereas Kdo used 1.7.0. A quick update of the property file
    of
    Aqua Data Studio fixed the problem. Thanks for the hint.
    --Bruno
    Marc Prud'hommeaux wrote:
    Bruno-
    Without being at all familiar with "Aqua Data Studio", I'll make a
    completely shot in the dark guess about what might be happening: you are
    using version x of Hypersonic to access the database, and then "Aqua
    Data Studio" is using version x+1. When the database is opened with HSQL
    version x+1, some internal version identifier in the database file is
    incremented, which disallows the previous version of HSQL (which is
    being used by Kodo) from opening the file.
    Again, this is a blind guess, but if it is the case, then the solution
    would be to ensure that you are using the same version of HSQL in both
    Kodo and "Aqua Data Studio".
    Otherwise, can you post the stack trace of the exception? That might
    give some more insight as to why this might be happening.
    As an aside, note that Kodo doesn't store or verify any internal
    "version" or anything like that, so I very much doubt that it is a
    problem with Kodo itself.
    In article <c1fihi$igu$[email protected]>, Bruno Schaeffer wrote:
    Hi,
    I am using Kodo JDO 3.0.2 together with HSQLDB (non-cached, same
    process).
    It
    runs fine. However, after having used a SQL tool such as Aqua Data Studio
    to
    inspect the database my Java code complains with the message
    "kodo.util.FatalDataStoreException: Wrong database file version". I have
    to
    rebuild the database and extend my classes again to get rid of thiserror.
    Is there some information in the database script that does not survivethe
    inspection with the SQL tool? How can I work around this?
    Thanks for your help
    --Bruno
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • I have purchase iPHONE 4S. During learning the application i have put mant times wrong passcode and my phone was disable. Plese tell us how to unlock it?

    i have purchase iPHONE 4S. During learning the application i have put mant times wrong passcode and my phone was disable. Plese tell us how to unlock it?

    Kyderbylove wrote:
    I locked my iphone 4s, I forgot the passcode and it says disabled connect to itunes. I have some very important information on the phone I can't lose, How can I retrieve that information if the phone was not backed up to icloud of my mac?
    You can't. If your phone is disabled, the data has already been erased...that's the whole point of the passcode. Your only option now is:
    Turn your phone off, then force it into recovery mode & restore it:
    Leave the USB cable connected to your computer, but NOT your phone, iTunes running, press & hold the home button while connecting the USB cable to your dock connector, continue holding the home button until you see “Connect to iTunes” on the screen. You may now release the home button. iTunes should now display that it has detected your phone in recovery mode, if not quit and reopen iTunes. If you still don’t see the recovery message repeat these steps again. iTunes will give you the option to restore from a backup or set up as new.

  • Something has gone wrong with my version of pages since I did an update on 18th January

    Something has gone wrong with my version of pages since I did an update on 18th January. I get an error message
    "You need a newer version of Pages to open this document"

    You have 2 versions of Pages on your Mac.
    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You have a problem when opening a file with the wrong version.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Note: Apple has removed over 100 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • HT201442 Apple Configurator claims to restore any version

    In this article http://support.apple.com/kb/HT5769?viewlocale=en_US&locale=en_US
    Apple Configurator claims to restore any version of iOS, yet refuses to do so.
    I have my performance reasons to want to go to the version I'm wanting, the current and final version of iOS for my iPod Touch is far too laggy and slow.
    So once again is a page here saying you can do something you cant?
    *Allows older iOS software versions and custom IPSW installation

    So the configurator works with older iOS versions, which really cant be used because you cannot downgrade or restore to the current version you have.
    Yet it also allows custom IPSW installation which is impossible because the only "version" you can choose is the current...
    Seems like a very poor choice in description for such a good software company.

  • Wrong pro application version istalled, wrong pro application version installed

    I keep getting this "wrong pro application version installed" when i try to open Logic Pro 8 on my intel. ive downloaded the pro applications and combined thing and it keeps giving this error msg. any help? ive read the online solutions and i still keep getting this message. can someone please help? im not a techie by any means so i really need the dumby version of a solution. thanks in advance.

    If you don't get an answer here, you might post in the Logic Pro discussion here.

  • List of Major / Minor Class Versions?

    Im working on a Java Assembly type program and was wondering if
    anyone knows where Sun lists the major/minor class versions?
    I'd like to have some way of associating those numbers with an SDK version.
    Google was of no help.

    They updated the respective footnote in the JVMS in the revised chapter on class file format, if that helps:
    The Java virtual machine implementation of Sun�s JDK release 1.0.2 supports class file format versions 45.0 through 45.3 inclusive. Sun�s JDK releases 1.1.X can support class file formats of versions in the range 45.0 through 45.65535 inclusive. For k >= 2 implementations of version 1.k of the Java 2 platform can support class file formats of versions in the range 45.0 through 44+k.0 inclusive.
    PDF files of the latest (1.6) revision of that chapter are available through the JSR 202: JavaTM Class File Specification Update page: [http://jcp.org/en/jsr/detail?id=202]

  • Which JRE version during runtime?

    is there a way to get the jre version during runtime?
    like when you call
    java -versionfrom the command line
    I dont want a whole load of stuff I just want to know if its 1.4.0 or above?

    System.getProperty("java.version")

  • New Version of Software Won't Install

    I am trying to download the newest version of Blackberry Desktop Manager (710_b042_multilanguage.exe) for PC and it won't install all the way.   The message keeps saying I have previous versions of the software still installed.  I tried installing all Blackberry apps, re-booting the PC and re-downloading the update from the website but it still comes up with the same message.   Any suggestions to correct so I can download the application?

    I finally found a solution to this problem
    While performing some searches, I discovered this affected BOTH Blackberry Link AND Blackberry Desktop Software, so there should have been some ... link between the two.
    There are many threads around, but each one refers only to one of the two softwares, but the common problems led me to understand that this is unrelated to the software package itself, but to automatic driver installation procedures
    carried out by the installer (Windows INstaller)
    Here's what I found:
    Affected Environment: the problems shows up on Windows 7 and other Windows version machines, when installing or upgrading Blackberry Desktop Software, or Blackberry Link.
    Sometimes, you have Desktop software installed and you want to install Link, OR you have Desktop software installed, it is working fine, but you need to upgrade it (automatically) to apply some software update -
    some Desktop SOftware updates are required to update some devices.
    Symptomps
    The problems shows in exactly the same way, during the final steps of installation of either Blackberry Desktop 7 OR Blackberry Link.
    You get a warning message saying
    "Some of the installation files from the previous versions of the software could not be removed. Make sure that no other application is using these files."
    open the
    Users\$_you_user_name\AppData\Local\Temp
    directory. You may need to choose hidden files and folders in Windows Explorer to see these
    Choose to sort files by creation date, scroll to the most recent files, and look for one of these
    BB_Desktop.log, if you're installing Blackberry Desktop Software
    OR
    BBLink_Install.log if you're installing Blackberry Link software.
    Open your file with a text editor, and look for part of the error message "some of the installation"  using the Find feature
    The cursor should stop where the error occoured.
    If the line above shows something referring to InstallRimUsbDriver, there are good chances you're exactly in my situation.
    If you DON'T find the same error I found, the line above the error message should give you a clue about what's going on, and you may want to share it on this forum, however the solution below may not be applicable to you.
    Solution
    Before you begin BACKUP YOUR SYSTEM AND CREATE A SYSTEM RESTORE POINT. The best thing is to have a full hard drive image. While the following steps are quite straightforward, additional problems on your system may be creating a
    potentially worse situation. Remember to backup your Blackberry device as well and also contacts/calendars/notes as these can be affected by the first sync after Desktop Software reinstallation.
    While I'm listing all the steps I took, some of them may be unnecessary, however the uninstall/reinstall of Desktop Manager or Link software should be performed anyway, IMHO.
    Uninstall Blackberry Desktop Software or Blackberry Link (I chose the "erase user data" option as well).
    With the device still connected, Uninstall the Blackberry smartphone driver from Control Panel / Device Manager
    Disconnect the device.
    Open a command  prompt window, and type
    pnputil.exe -e
    you'll get a list of devices/drivers, scroll as needed and take note of the "oemxx.inf" entries regarding Research In Motion devices.
    (xx can be a 2 or 3 digits number)
    type
    pnputil.exe -f -d oemxxx.inf
    to remove the entries regarding the Research in Motion devices.
    Chech that the operation succeded after each action.
    Restart system.
    At this point, yoy may start reinstalling the Blackberry Desktop or Blackberry Link Software;
    You may still get the error.
    Now perform again the above actions regarding pnputil.exe to see if there are still Research in Motion devices appearing.
    then open the
    Users\$_you_user_name\AppData\Local\Temp
    directory. You may need to choose hidden files and folders in Windows Explorer to see these (you should have done this before, see above)
    Choose to sort files by creation date, scroll to the most recent files, and look for one of these
    rim_usb_install_log (date stamp) - choose the most recent
    Open it with a text editor
    In my case, I found this(20:52:07): Entering ModifyRimUsbRegKey
    (20:52:07): Exit ModifyRimUsbRegKey, RimUsb.sys  count: 2
    (20:52:07): InstallRimUsbDriver NT
    (20:52:07): DeleteAllRIMInfFiles ENTER
    (20:52:07): SetupUninstallOEMInf inf fileem192.inf ERROR 0xe000023c
    Look for the oemxxx.inf (in this example is oem192.inf) file on your hard drive. Delete it.
    Run the installer again. This time, I went into another error
    (20:59:48): DisconnectDevices: Enter
    (20:59:48): DisconnectDevices: CreateInstance failed. Error=0x80070002
    (20:59:48): DisconnectDevices: Enter
    (20:59:48): DisconnectDevices: CreateInstance failed. Error=0x80070002
    Then rebooted and the install went fine.
    Keep in mind that, whenever something goes wrong with these driver related action, you get little information in the main log file, but you get some more in this file.
    After performing these action, reconnect the device, it should be recognized; you'll almost certainly need to reconfigure your sync preferences, and start synching again.
    Please let me know if this helped.

  • Apple application support version 1.4.1 is installed error

    I keep getting this error when I attempt to open itunes after upgrading to the latest version. 10.1.1
    Apple application support version 1.4.1 is installed, itunes requires apple application support version 1.3.2 or later
    Does anyone know what to do about it?
    I have already uninstall the entire program and all its components 3 times. Still, same error after re-installing.

    Bang goes another theory. Okay, let's try putting your AAS 1.4.1 back. (Fingers crossed, iTunes will notice it properly this time.)
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, does iTunes launch properly now?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

Maybe you are looking for

  • How can we make use of DIMENSIONS in SAP Business One ??

    Hello everyone... how can the dimensions be used for detailed information.. pls reply on it.. its urgent,, Thanx Abhay Sharma +91-98996-89449

  • Web Dispatcher and SSL on ABAP+Java

    Hello, Have installed SAP web dispatcher on WAS 6.40 ABAP+Java system. Communicating with Portal SP16 system. The HTTP works fine. Have not been able to get SSL working with web dispatcher. For troubleshooting activated ITS on this system and HTTPS w

  • Sending photo of flex to java

    I have a variable in the flex-type byte array. I send this variable to java through RemoteObject (BlazeDS), but do not know what type the variable should be the parameter passed to the java. Has anyone worked with picture between flex and java shooti

  • Trouble after installing PSE10

    I just downloaded PSE10 on my PC with PSE9 already installed. PSE9 has worked fine for several months. Installation of PSE10 went fine without problems. But it won't start. And PSE9 will now only start if the PC is rebooted, and the editor will not s

  • Shooting Raw + Jpeg

    I frequently shoot raw + jpeg so have a lot of files with the same name but different extensions. When I try to import the raw files and jpegs both into Lightroom (I'm using version 1.0) I only get the raw files. If I try to import the jpegs separate