Problem Installing Applet

Hello. Having a little problem installing my applet. The package loads cleanly, but when I try to install the applet it blows up and returns an OP.error.E6.6A86. I looked this up and found out that it means SW_INCORRECT_P1P2. After looking at my code for the longest time, I can't figure out why this error would be thrown. I throw the error in my process method, but can't understand where it would come from in the install or constructor. Any help figuring this out is greatly appreciated. Thanks. Justin
My code:
package test.justin2;
import javacard.framework.*;
public class UserInformationApplet extends javacard.framework.Applet
&nbsp&nbsp&nbspprivate byte[] userID = {(byte)0x44,(byte)0x45,(byte)0x46,(byte)0x41,(byte)0x55,(byte)0x4C,(byte)0x54};
&nbsp&nbsp&nbspprivate byte[] userType = {(byte)0x45,(byte)0x4D,(byte)0x50};
&nbsp&nbsp&nbspprivate byte[] password = {(byte)0x50,(byte)0x41,(byte)0x53,(byte)0x53,(byte)0x57,(byte)0x4F,(byte)0x52,(byte)0x44};
&nbsp&nbsp&nbsp private final static short USER_ID = 0;
&nbsp&nbsp&nbsp private final static short USER_TYPE = 1;
&nbsp&nbsp&nbsp private final static short PASSWORD = 2;
&nbsp&nbsp&nbsp
&nbsp&nbsp&nbsp public UserInformationApplet(byte[] bArray, short bOffset, byte bLength)
&nbsp&nbsp&nbsp {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     super();
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     register();
&nbsp&nbsp&nbsp }
&nbsp&nbsp&nbsp private void getField(APDU apdu)
&nbsp&nbsp&nbsp {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     byte[] buffer = apdu.getBuffer();
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     if(buffer[ISO7816.OFFSET_P1] == (byte) USER_ID)
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     short le = apdu.setOutgoing();
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     apdu.sendBytesLong(userID, (short) 0, (short) userID.length);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     }
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     else if(buffer[ISO7816.OFFSET_P1] == (byte) USER_TYPE)
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     short le = apdu.setOutgoing();
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     apdu.sendBytesLong(userType, (short) 0, (short) userType.length);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     }
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     else
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     short le = apdu.setOutgoing();
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     apdu.sendBytesLong(password, (short) 0, (short) password.length);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     }
&nbsp&nbsp&nbsp }
&nbsp&nbsp&nbsp public static void install(byte[] bArray, short bOffset, byte bLength) throws ISOException
&nbsp&nbsp&nbsp {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     UserInformationApplet me = new UserInformationApplet(bArray, bOffset, (byte)bLength);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     me.register();
&nbsp&nbsp&nbsp }
&nbsp&nbsp&nbsp public void process(APDU apdu) throws ISOException
&nbsp&nbsp&nbsp {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     byte[] buffer = apdu.getBuffer();
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     if(buffer[ISO7816.OFFSET_CLA] != (byte) 0x80)
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp          ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     if ((buffer[ISO7816.OFFSET_INS] != (byte) 0x02) & (buffer[ISO7816.OFFSET_INS] != (byte) 0x03))
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp          ISOException.throwIt(ISO7816.SW_DATA_INVALID);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     if ((buffer[ISO7816.OFFSET_P1] != (byte) USER_ID) & (buffer[ISO7816.OFFSET_P1] != (byte) USER_TYPE) & (buffer[ISO7816.OFFSET_P1] != (byte) PASSWORD))
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp          ISOException.throwIt(ISO7816.SW_INCORRECT_P1P2);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     if(buffer[ISO7816.OFFSET_INS] == (byte) 0x02)
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp          getField(apdu);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     }
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     else if(buffer[ISO7816.OFFSET_INS] == (byte) 0x03)
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp          setField(apdu);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     }
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     else
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp          ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     }
&nbsp&nbsp&nbsp }
&nbsp&nbsp&nbsp private void setField(APDU apdu)
&nbsp&nbsp&nbsp {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     byte[] buffer = apdu.getBuffer();
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     short lc = (short) ((short) 0x00FF & buffer[4]);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     if(buffer[ISO7816.OFFSET_P1] == USER_ID)
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     userID = new byte[lc];
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     Util.arrayCopy(buffer, (short) 5, userID, (short) 0, lc);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     }
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     else if(buffer[ISO7816.OFFSET_P1] == USER_TYPE)
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     userType = new byte[lc];
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     Util.arrayCopy(buffer, (short) 5, userType, (short) 0, lc);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     }
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     else
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     {
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     password = new byte[lc];
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     Util.arrayCopy(buffer, (short) 5, password, (short) 0, lc);
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     }
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp     apdu.setOutgoingAndSend((short) 0, (short) 0);
&nbsp&nbsp&nbsp }

Thanks for the help. I tried sending the 0C to make the applet selectable and then received a 0x6A81, SW_FUNC_NOT_SUPPORTED. I didn't have the select or deselect methods in my applet, so I added those also and then received the same error. So what I currently have is the previous code plus this:
&nbsp&nbsp&nbsppublic boolean select()
&nbsp&nbsp&nbsp{
&nbsp&nbsp&nbsp&nbsp&nbsp&nbspreturn true;
&nbsp&nbsp&nbsp}
&nbsp&nbsp&nbsppublic void deselect()
&nbsp&nbsp&nbsp{
&nbsp&nbsp&nbsp&nbsp&nbsp&nbspreturn;
&nbsp&nbsp&nbsp}
I can't help but think it's got to be some little thing, because it looks fine to me. I greatly appreciate the help. Justin.

Similar Messages

  • Possible problem installing kdeplasma-applets-plasma-nm

    When doing pacman -Syu kdeplasma-applets-plasma-nm for the new kde network management package does anyone have any problem installing it?  I installed the first released version a few days back which could be installed in parallel with the old kdeplasma-applets-networkmanagement package which was fine, and then once installed the original package could then be removed.  However the new version of kdeplasma-applets-plasma-nm (0.9.3.0-2 -> 0.9.3.1-1) now has the same filenames as the original old package and there may be filename conflicts during install.
    Does anyone know the best way to install the new package (0.9.3.1-1) on a system where the first version (0.9.3.0-2) was not yet installed?
    Last edited by mcloaked (2013-10-15 20:09:19)

    OK so I guess that the following three commands in sequence should work fine - but I do wonder if a note to the effect would be worth as an announcement?
    pacman -Syu
    pacman -R kdeplasma-applets-networkmanagement
    pacman -S kdeplasma-applets-plasma-nm
    Otherwise if trying an install on its own leads to:
    pacman -Syu kdeplasma-applets-plasma-nm
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    Packages (3): libmm-qt-0.5.1-1 libnm-qt-0.9.0.1-1 kdeplasma-applets-plasma-nm-0.9.3.1-1
    Total Download Size: 1.20 MiB
    Total Installed Size: 5.62 MiB
    :: Proceed with installation? [Y/n] y
    :: Retrieving packages ...
    libmm-qt-0.5.1-1-x86_64 98.9 KiB 1163K/s 00:00 [###########################################] 100%
    libnm-qt-0.9.0.1-1-x86_64 417.3 KiB 1128K/s 00:00 [###########################################] 100%
    kdeplasma-applets-plasma-nm-0.9.3.1-1-x86_64 712.4 KiB 1103K/s 00:01 [###########################################] 100%
    (3/3) checking keys in keyring [###########################################] 100%
    (3/3) checking package integrity [###########################################] 100%
    (3/3) loading package files [###########################################] 100%
    (3/3) checking for file conflicts [###########################################] 100%
    error: failed to commit transaction (conflicting files)
    kdeplasma-applets-plasma-nm: /usr/lib/kde4/kded_networkmanagement.so exists in filesystem
    kdeplasma-applets-plasma-nm: /usr/share/apps/networkmanagement/networkmanagement.notifyrc exists in filesystem
    kdeplasma-applets-plasma-nm: /usr/share/icons/oxygen/32x32/devices/network-defaultroute.png exists in filesystem
    kdeplasma-applets-plasma-nm: /usr/share/kde4/services/kded/networkmanagement.desktop exists in filesystem
    kdeplasma-applets-plasma-nm: /usr/share/kde4/services/plasma-applet-networkmanagement.desktop exists in filesystem
    Errors occurred, no packages were upgraded.
    which is clearly not desirable!

  • Problem Installing the loaded applet in Samsung java card (S3CC9P9).

    Hi all,
    Am trying to install the applets already loaded into the Samsung java card(S3CC9P9), because am unable to select the applet which are loaded into the card. I got to know that the applets are only loaded, they are not installed in the card, without installing the applet ,we cannot select the applet. Am using gpj(version 20120310 ) to install the applets into the card.
    When i execute : java -jar gpj.jar -list
    i get the list of applets in the card as :
    AID: A0 00 00 00 03 00 00 00 |........| ISD LC: 1 PR: 0x1A
    AID: A0 00 00 00 03 10 |......| Exe LC: 1 PR: 0x00
    AID: D4 10 65 09 90 00 10 00 |..e.....| Exe LC: 1 PR: 0x00
    AID: 31 50 41 59 2E |1PAY.| Exe LC: 1 PR: 0x00
    AID: D4 10 65 09 90 00 30 00 |..e...0.| Exe LC: 1 PR: 0x00
    AID: D4 10 65 09 90 00 20 00 |..e... .| Exe LC: 1 PR: 0x00
    Here am able to select only the first applet i.e., A0 00 00 00 03 00 00 00
    SO, when i try to install the other applets, for example A0 00 00 00 03 10, its fails.
    When i execute : java -jar gpj.jar -install -applet A00000000310
    i get :
    Found terminals: [PC/SC terminal ACS ACR38U 00 00]
    Found card in terminal: ACS ACR38U 00 00
    ATR: 3B 69 00 00 80 63 31 46 DF 83 FF 90 00
    DEBUG: Command APDU: 00 A4 04 00 07 A0 00 00 01 51 00 00
    DEBUG: Response APDU: 6A 82
    Failed to select Security Domain GP211 A0 00 00 01 51 00 00 , SW: 6A 82
    DEBUG: Command APDU: 00 A4 04 00 08 A0 00 00 00 18 43 4D 00
    DEBUG: Response APDU: 6A 82
    Failed to select Security Domain GemaltoXpressPro A0 00 00 00 18 43 4D 00 , SW: 6A 82
    DEBUG: Command APDU: 00 A4 04 00 08 A0 00 00 00 03 00 00 00
    DEBUG: Response APDU: 6F 19 84 08 A0 00 00 00 03 00 00 00 A5 0D 9F 6E 06 10 01 76 DE 00 05 9F 65 01 7F 90 00
    Successfully selected Security Domain OP201a A0 00 00 00 03 00 00 00
    DEBUG: Command APDU: 80 50 00 00 08 AE 2A B8 CE 3A BB E0 B0
    DEBUG: Response APDU: 00 00 61 41 01 09 38 2F 09 5A FF 01 3F D9 93 D9 FE 9A FA 3B E4 B7 21 89 6A 34 AB 18 90 00
    DEBUG: Command APDU: 84 82 00 00 10 A2 63 07 96 0B D8 A3 A9 93 A2 5C 7C 6D B7 E0 54
    DEBUG: Response APDU: 90 00
    DEBUG: Command APDU: 84 82 00 00 08 A2 63 07 96 0B D8 A3 A9
    DEBUG: Response APDU: 90 00
    java.lang.NullPointerException
         at net.sourceforge.gpj.cardservices.GlobalPlatformService.installAndMakeSelecatable(Unknown Source)
         at net.sourceforge.gpj.cardservices.GlobalPlatformService.main(Unknown Source)
    Can anyone please tell me where am wrong and how to make the applets selectable.
    Thanks in advance

    hy
    1. do you have a reader with a serial (com1) connection?
    if so, the reader has to be connected before starting windows. so windows recognizes it.
    2. have a look to the control panel. is there a tool - installed during driver installation - to test and configure the reader?
    if so try it.
    if all that works, the jcop tools communicate with the reader over the installed driver.
    snoopy

  • Problem selecting install applet

    I'm using JCOP30 card through a pcsc-compatible reader
    When i try to select an install applet through using apdutool, it always return me 6a82 code.
    Here are the lines I send:
    powerup;
    // Select the installer applet
    0x00 0xA4 0x04 0x00 0x09 0xa0 0x00 0x00 0x00 0x62 0x03 0x01 0x08 0x01 0;
    powerdown;
    The response :
    C:\JavaCard\java_card_kit-2_2_2\bin>apdutool -pcsc C:\test.scr
    Java Card 2.2.2 APDU Tool, Version 1.3
    Copyright 2005 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.
    WARNING: PC/SC is not officially supported and may not work on all platforms.
    Before SCardEstablishContext ...
    After SCardEstablishContext ...
    SUCCESS ...-855572480
    Reader 0 : ORGA CardMouse U 0
    NativeConnect Context is ... -855572480
    NativeConnect card is ... ea010000
    NativeStatus card is ... ea010000
    Received ATR = 0x3b 0x66 0x00 0xff 0x4a 0x43 0x4f 0x50 0x30 0x33
    NativeTransmit card is ... ea010000
    NativeTransmit_barray(): inlen 14
    NativeTransmit_barray(): return code 0x0, return length 2
    CLA: 00, INS: a4, P1: 04, P2: 00, Lc: 09, a0, 00, 00, 00, 62, 03, 01, 08, 01, Le: 00, SW1: 6a, SW2: 82
    NativeDisconnect is ... ea010000
    On the cref it returns 9000 status.
    What am I doing wrong?

    By the way, can anyone point me to the list of
    response codes with the explanation(besides pdf-file
    supplied with sdk)?All error response codes are defined in ISO/IEC 7816-4 which isn't available for free (you have to buy it). There is only an older version available online for free:
    http://www.ttfn.net/techno/smartcards/iso7816_4.html
    Take a look on table 12 to 18 for the error codes.
    Jan

  • Error on installing applet into JAVA Simulator

    Hello all, i have a very basic question (well...for this you can see how newbie i am...)
    I'm having problems installing an applet into the simulator.
    My helloWorld.src file looks like this:
    powerup;
    // Select the installer applet
    0x00 0xA4 0x04 0x00 0x09 0xa0 0x00 0x00 0x00 0x62 0x03 0x01 0x08 0x01 0x7F;
    // create HelloWorld
    0x80 0xB8 0x00 0x00 0x0b 0x09 0xa0 0x0 0x0 0x0 0x62 0x3 0x1 0xc 0x1 0x00 0x7F;
    // Select HelloWorld
    0x00 0xA4 0x04 0x00 9 0xa0 0x0 0x0 0x0 0x62 0x3 0x1 0xc 0x1 0x7F;
    powerdown;I run cref like this:
    cref -o demoeeand apdutool like this:
    apdutool helloWorld.scr > hello.outthen, the result i get is:
    Java Card 2.2.2 APDU Tool, Version 1.3
    Copyright 2005 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.
    Opening connection to localhost on port 9025.
    Connected.
    Received ATR = 0x3b 0xf0 0x11 0x00 0xff 0x01
    CLA: 00, INS: a4, P1: 04, P2: 00, Lc: 09, a0, 00, 00, 00, 62, 03, 01, 08, 01, Le: 00, SW1: 90, SW2: 00
    CLA: 80, INS: b8, P1: 00, P2: 00, Lc: 0b, 09, a0, 00, 00, 00, 62, 03, 01, 0c, 01, 00, Le: 00, SW1: 64, SW2: 43
    CLA: 00, INS: a4, P1: 04, P2: 00, Lc: 09, a0, 00, 00, 00, 62, 03, 01, 0c, 01, Le: 00, SW1: 6d, SW2: 00so, the 6443 means
    Applet not found for installation.
    �Cause: An attempt was made to create an applet instance, but the applet code was not installed on the card.
    �Solution: Verify that the applet package has been downloaded to the card.
    so, what step did i miss here??
    thank you
    PS: i also tried with JCWDE but the error was the same
    Message was edited by:
    Helri

    I've noticed that my applet uses the java.lang package. For what i've read the CREF only has installed the Installer Applet and the javacard.framework package, so can that be the problem? i.e., do I have first to load the java.lang package into the simulator??
    I really need help...i'm literally stuck on this....

  • Problem downloading applet in W2K with SP4.

    Hi,
    We are using a Security Applet in our web application for validation purposes. We were using W2K Professional / W2K Server with SP3 and Sun JRE 1.3.x. The application was working as expected.
    We are now testing with W2K Server with SP4 (to upgrade to SP4). The current testing environment is W2K Server with SP4 and Sun JRE1.3.x. Now with the setup, we are facing a problem in downloading the applet (Security Applet). The downloading applet fails and the subsequent loading as well.
    Please advice. Does it requires any particular settings to be done at Client?
    The specs are
    Windows 2000 Server, SP4
    IE 6 SP1
    Sun Jre 1.3.x
    Problem:Downloading applet fails.
    PS: When we test with SP3, we can see the applet downloaded (CAB File), with SP4 it was not found.
    Thanks in Advance,
    Prakash

    Does the w2k sp4 server host your pages and applet?
    If yes then why install the SUN JRE 1.3 on the server, doesn't the client need this?
    Is the cab format supported by SUN jre or is it meant for msjvm and if so why is the client trying to open
    the cab with sun jre?
    http://java.sun.com/j2se/1.4.2/docs/guide/deployment/deployment-guide/upgrade-guide/article-02.html
    What's on the server doesn't have anything to do with the applet. The server is
    just serving it. Forcing the client/consumer of the html page with the applet is trying to open an applet
    with sun jre while the applet is ment for msjvm causes the error.
    The client can fix this by opening IE and check under tools -> internet options -> advanced -> UNCHECK
    the use sun jre ... for <applet tag. For the XP machine you might have a problem. Some of the don't have
    the msjvm at all so there is nothing to run the <applet, I tried to download it at microsoft but was unable
    to find it.

  • 10.6.8 update combined - problems installing

    Hi all,
    Currently having huge problems installing this update on my mac, have been trying for a couple of days now to get this machine back up and running again after I was told by the genius bar 2 years ago that after them spending nearly 900 pounds on new parts, that they "had no idea what the problem was, but could be something to do with the logic board". I finally decided to sell it, but as a parts and repair it will get £100 and fully working it could get a bit more, so it's in my interest to get it up and running again.
    I am by no means a computer expert, but I know a few things and can normally sort problems out by just simply using search, but alas I have finally been beaten, and have come here to ask for some assistance.
    After re-installing my macbook pro 3,1 (mid 2007) with it's original 10.4 tiger software probably 5 times before it worked, then moving on to 10.6 snow leopard which also took a couple of attempts, I am now completely stuck with no way to get this machine up to 10.6.8, so that I can make the jump to mountain lion. The software update program is either an absolute heap of dung, or my computer just won't have any of it. I have tried multiple solutions which I will list below:
    Using software update to install the 10.6.8 combined update - Failed
    Downloading the 10.6.8 combined update from apple support downloads - Failed
    Deleting the library/preferencecom.apple.softwareupdate etc. files - Still software update Failed
    Downloading 10.6.1 update and installing - Success after a few attempts
    Downloading 10.6.8 combined and trying again - Failed
    Downloading 10.6.2 update and installing - Failed
    Now this is where I am at. I have downloaded these files both on the macbook pro itself, and on my windows laptop - then transfering them across. I have never been more frustrated at a computer in my entire life, and am about 20 minutes away from throwing this laptop out of the window onto a poor bystander below. If anyone has any solution - (and don't say reformat and reinstall the OS - I've already tried that), then it would be greatly appreciated!
    I'll post the console message from my last install of just the 10.6.8 combined upate (without using software update) and if someone on here who can make sense of these messages can see a problem or offer a solution, then that would also be greatly appreciated, thanks!
    Console message after attempted install:
    06/03/2013 13:53:17        com.apple.ocspd[185]   dyld: shared cached file was build against a different libSystem.dylib, ignoring cache
    06/03/2013 13:53:25 Installer[182]      <ZeroSliderSplitView: 0x106dc2c70>: the delegate <TargetSelectPage: 0x106d6d9a0> was sent -splitView:resizeSubviewsWithOldSize: and left the subview frames in an inconsistent state:
    06/03/2013 13:53:25 Installer[182]      Split view bounds: {{0, 0}, {402, 104}}
    06/03/2013 13:53:25 Installer[182]          Subview frame: {{0, 0}, {0, 32}}
    06/03/2013 13:53:25 Installer[182]          Subview frame: {{0, 0}, {402, 104}}
    06/03/2013 13:53:25 Installer[182]      The outer edges of the subview frames are supposed to line up with the split view's bounds' edges. NSSplitView is working around the problem, perhaps at the cost of more redrawing. (This message is only logged once per NSSplitView.)
    06/03/2013 13:53:27 [0x0-0x17017].com.apple.installer[182]       dyld: shared cached file was build against a different libSystem.dylib, ignoring cache
    06/03/2013 13:53:37 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    06/03/2013 13:53:38 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    06/03/2013 13:53:38 com.apple.installd[198]      dyld: shared cached file was build against a different libSystem.dylib, ignoring cache
    06/03/2013 13:53:50 com.apple.coreservicesd[50]      dyld: shared cached file was build against a different libSystem.dylib, ignoring cache
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    06/03/2013 13:53:57 Installer[182]      PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    06/03/2013 13:53:57 Installer[182]      The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.

    There really shouldn't be any problem downloading that combo update unless you've got a very slow or flaky connection. And Windows doesn't play as well with Mac files as the Mac does with Windows files; who knows what Windows might have done to the update's file integrity.
    You might also try downloading the file using another browser such as Firefox. And when you have the updater, reboot into Safe Mode and then run the updater. That way you can be sure there isn't third party software somehow interfering with the update while it's tinkering with the guts of OS X.

  • Problems installing Adobe Air and BBC iPlayer Desktop

    Problems installing Adobe Air and BBC iPlayer Desktop
    I'm running Windows 7 32 bit on an ASUS netbook with 2mb ram. I installed both  Air 3.7 and BBC iPlayer Desktop using Google Chrome. I downloaded 3 BBC programmes. Two ran fine but the third wouldn't start and I kept getting a message to try again later. I deleted this programme and downloaded it again, with the same result.
    So I uninstalled both Air and the BBC iPlayer Desktop, the Air exe file and the two folders at the following locations:
    C:\Users\USERNAME\AppData\Roaming\Adobe\AIR\   and
    C:\Users\USERNAME\AppData\Roaming\BBCiPlayerDesktop.xxx
    Since doing this each time I try to install Air either on its own or with the BBC iPlayer software I get the message part way through installation:
    "Sorry, an error has occurred.
    An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator."
    I have run the Microsoft Fix it programme and still get the same result.
    I have tried everything on your Trouble Shooting page apart from the bit about the elevated command prompt, but as I'm the sole user and administrator, that seems unnecessary.
    I have closed Chrome and tried installation using Windows Explorer but with the same result.
    I have tried all the above with Microsoft Security Essentials running and disabled. And I have tried the same with Astrill on and off.
    I have had a response from the BBC with much the same advice as appears on your trouble shooting page.
    Here is the Air installation log, followed by the MSI log.
    [2013-04-25:06:53:46] Runtime Installer begin with version 3.7.0.1530 on
    Windows Vista x86
    [2013-04-25:06:53:46] Commandline is:
    [2013-04-25:06:53:46] No installed runtime detected
    [2013-04-25:06:53:57] Relaunching with elevation
    [2013-04-25:06:53:57] Launching subprocess with commandline c:\users
    \steve\appdata\local\temp\air79c1.tmp\adobe air installer.exe -ei
    [2013-04-25:06:54:02] Runtime Installer begin with version 3.7.0.1530 on
    Windows 7 x86
    [2013-04-25:06:54:02] Commandline is: -stdio \\.\pipe\AIR_1172_0 -ei
    [2013-04-25:06:54:02] No installed runtime detected
    [2013-04-25:06:54:03] Starting silent runtime install. Installing runtime version
    3.7.0.1530
    [2013-04-25:06:54:04] Installing msi at c:\users\steve\appdata\local\temp
    \air79c1.tmp\setup.msi with guid {A0087DDE-69D0-11E2-AD57-43CA6188709B}
    [2013-04-25:06:54:10] Error occurred during msi install operation; beginning
    rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2
    text="1603" errorID=0]
    [2013-04-25:06:54:10] Rolling back install of c:\users\steve\appdata\local
    \temp\air79c1.tmp\setup.msi
    [2013-04-25:06:54:10] Rollback complete
    [2013-04-25:06:54:10] Exiting due to error: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:06:54:10] Exiting due to error: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:06:54:10] Runtime Installer end with exit code 7
    [2013-04-25:06:54:20] Runtime Installer end with exit code 7
    [2013-04-25:06:55:38] Runtime Installer begin with version 3.7.0.1530 on
    Windows Vista x86
    [2013-04-25:06:55:38] Commandline is:
    [2013-04-25:06:55:38] No installed runtime detected
    [2013-04-25:06:55:45] Relaunching with elevation
    [2013-04-25:06:55:45] Launching subprocess with commandline c:\users
    \steve\appdata\local\temp\air30fe.tmp\adobe air installer.exe -ei
    [2013-04-25:06:55:48] Runtime Installer begin with version 3.7.0.1530 on
    Windows Vista x86
    [2013-04-25:06:55:48] Commandline is: -stdio \\.\pipe\AIR_1264_0 -ei
    [2013-04-25:06:55:48] No installed runtime detected
    [2013-04-25:06:55:49] Starting silent runtime install. Installing runtime version
    3.7.0.1530
    [2013-04-25:06:55:51] Installing msi at c:\users\steve\appdata\local\temp
    \air30fe.tmp\setup.msi with guid {A0087DDE-69D0-11E2-AD57-43CA6188709B}
    [2013-04-25:06:55:55] Error occurred during msi install operation; beginning
    rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2
    text="1603" errorID=0]
    [2013-04-25:06:55:55] Rolling back install of c:\users\steve\appdata\local
    \temp\air30fe.tmp\setup.msi
    [2013-04-25:06:55:55] Rollback complete
    [2013-04-25:06:55:55] Exiting due to error: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:06:55:55] Exiting due to error: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:06:55:55] Runtime Installer end with exit code 7
    [2013-04-25:06:55:59] Runtime Installer end with exit code 7
    [2013-04-25:07:05:12] Runtime Installer begin with version 3.7.0.1530 on
    Windows 7 x86
    [2013-04-25:07:05:12] Commandline is:
    [2013-04-25:07:05:12] No installed runtime detected
    [2013-04-25:07:05:18] Relaunching with elevation
    [2013-04-25:07:05:18] Launching subprocess with commandline c:\users
    \steve\appdata\local\temp\air953.tmp\adobe air installer.exe -ei
    [2013-04-25:07:05:24] Runtime Installer begin with version 3.7.0.1530 on
    Windows 7 x86
    [2013-04-25:07:05:24] Commandline is: -stdio \\.\pipe\AIR_3888_0 -ei
    [2013-04-25:07:05:24] No installed runtime detected
    [2013-04-25:07:05:24] Starting silent runtime install. Installing runtime version
    3.7.0.1530
    [2013-04-25:07:05:26] Installing msi at c:\users\steve\appdata\local\temp
    \air953.tmp\setup.msi with guid {A0087DDE-69D0-11E2-AD57-43CA6188709B}
    [2013-04-25:07:05:29] Error occurred during msi install operation; beginning
    rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2
    text="1603" errorID=0]
    [2013-04-25:07:05:29] Rolling back install of c:\users\steve\appdata\local
    \temp\air953.tmp\setup.msi
    [2013-04-25:07:05:29] Rollback complete
    [2013-04-25:07:05:29] Exiting due to error: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:05:29] Exiting due to error: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:05:29] Runtime Installer end with exit code 7
    [2013-04-25:07:05:31] Runtime Installer end with exit code 7
    [2013-04-25:07:06:12] Runtime Installer begin with version 3.7.0.1530 on
    Windows Vista x86
    [2013-04-25:07:06:12] Commandline is:
    [2013-04-25:07:06:12] No installed runtime detected
    [2013-04-25:07:06:21] Relaunching with elevation
    [2013-04-25:07:06:22] Launching subprocess with commandline c:\users
    \steve\appdata\local\temp\aire916.tmp\adobe air installer.exe -ei
    [2013-04-25:07:06:32] Runtime Installer begin with version 3.7.0.1530 on
    Windows 7 x86
    [2013-04-25:07:06:32] Commandline is: -stdio \\.\pipe\AIR_5884_0 -ei
    [2013-04-25:07:06:32] No installed runtime detected
    [2013-04-25:07:06:32] Starting silent runtime install. Installing runtime version
    3.7.0.1530
    [2013-04-25:07:06:33] Installing msi at c:\users\steve\appdata\local\temp
    \aire916.tmp\setup.msi with guid {A0087DDE-69D0-11E2-AD57-43CA6188709B}
    [2013-04-25:07:06:37] Error occurred during msi install operation; beginning
    rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2
    text="1603" errorID=0]
    [2013-04-25:07:06:37] Rolling back install of c:\users\steve\appdata\local
    \temp\aire916.tmp\setup.msi
    [2013-04-25:07:06:37] Rollback complete
    [2013-04-25:07:06:37] Exiting due to error: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:06:37] Exiting due to error: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:06:37] Runtime Installer end with exit code 7
    [2013-04-25:07:06:40] Runtime Installer end with exit code 7
    [2013-04-25:07:26:15] Runtime Installer begin with version 3.7.0.1530 on
    Windows Vista x86
    [2013-04-25:07:26:15] Commandline is:
    [2013-04-25:07:26:15] No installed runtime detected
    [2013-04-25:07:26:28] Relaunching with elevation
    [2013-04-25:07:26:28] Launching subprocess with commandline c:\users
    \steve\appdata\local\temp\air3063.tmp\adobe air installer.exe -ei
    [2013-04-25:07:26:37] Runtime Installer begin with version 3.7.0.1530 on
    Windows 7 x86
    [2013-04-25:07:26:37] Commandline is: -stdio \\.\pipe\AIR_2348_0 -ei
    [2013-04-25:07:26:37] No installed runtime detected
    [2013-04-25:07:26:37] Starting silent runtime install. Installing runtime version
    3.7.0.1530
    [2013-04-25:07:26:39] Installing msi at c:\users\steve\appdata\local\temp
    \air3063.tmp\setup.msi with guid {A0087DDE-69D0-11E2-AD57-43CA6188709B}
    [2013-04-25:07:26:48] Error occurred during msi install operation; beginning
    rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2
    text="1603" errorID=0]
    [2013-04-25:07:26:48] Rolling back install of c:\users\steve\appdata\local
    \temp\air3063.tmp\setup.msi
    [2013-04-25:07:26:48] Rollback complete
    [2013-04-25:07:26:48] Exiting due to error: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:26:48] Runtime Installer end with exit code 7
    [2013-04-25:07:46:09] Runtime Installer end with exit code 7
    === Verbose logging started: 25/04/2013  08:34:51  Build type: SHIP UNICODE
    5.00.7601.00  Calling process: C:\windows\System32\msiexec.exe ===
    MSI (c) (68:6C) [08:34:51:397]: Font created.  Charset: Req=0, Ret=0, Font:
    Req=MS Shell Dlg, Ret=MS Shell Dlg
    MSI (c) (68:6C) [08:34:51:397]: Font created.  Charset: Req=0, Ret=0, Font:
    Req=MS Shell Dlg, Ret=MS Shell Dlg
    MSI (c) (68:70) [08:34:51:469]: Resetting cached policy values
    MSI (c) (68:70) [08:34:51:469]: Machine policy value 'Debug' is 0
    MSI (c) (68:70) [08:34:51:469]: ******* RunEngine:
               ******* Product: C:\Users\Steve\Downloads\MicrosoftFixit50381.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (c) (68:70) [08:34:51:473]: Machine policy value 'DisableUserInstalls' is 0
    MSI (c) (68:70) [08:34:51:653]: SOFTWARE RESTRICTION POLICY: Verifying
    package --> 'C:\Users\Steve\Downloads\MicrosoftFixit50381.msi' against
    software restriction policy
    MSI (c) (68:70) [08:34:51:654]: SOFTWARE RESTRICTION POLICY: C:\Users
    \Steve\Downloads\MicrosoftFixit50381.msi has a digital signature
    MSI (c) (68:70) [08:34:51:966]: SOFTWARE RESTRICTION POLICY: C:\Users
    \Steve\Downloads\MicrosoftFixit50381.msi is permitted to run at the
    'unrestricted' authorization level.
    MSI (c) (68:70) [08:34:51:986]: Cloaking enabled.
    MSI (c) (68:70) [08:34:51:986]: Attempting to enable all disabled privileges
    before calling Install on Server
    MSI (c) (68:70) [08:34:52:001]: End dialog not enabled
    MSI (c) (68:70) [08:34:52:001]: Original package ==> C:\Users\Steve
    \Downloads\MicrosoftFixit50381.msi
    MSI (c) (68:70) [08:34:52:001]: Package we're running from ==> C:\Users
    \Steve\Downloads\MicrosoftFixit50381.msi
    MSI (c) (68:70) [08:34:52:010]: APPCOMPAT: Compatibility mode property
    overrides found.
    MSI (c) (68:70) [08:34:52:012]: APPCOMPAT: looking for appcompat database
    entry with ProductCode '{55D13F49-FCB8-4892-8266-05D373FCAA61}'.
    MSI (c) (68:70) [08:34:52:012]: APPCOMPAT: no matching ProductCode found
    in database.
    MSI (c) (68:70) [08:34:52:041]: MSCOREE not loaded loading copy from
    system32
    MSI (c) (68:70) [08:34:52:063]: Machine policy value 'TransformsSecure' is 0
    MSI (c) (68:70) [08:34:52:063]: User policy value 'TransformsAtSource' is 0
    MSI (c) (68:70) [08:34:52:064]: Note: 1: 2262 2: File 3: -2147287038
    MSI (c) (68:70) [08:34:52:064]: Note: 1: 2262 2: MsiFileHash 3: -2147287038
    MSI (c) (68:70) [08:34:52:065]: Machine policy value 'DisablePatch' is 0
    MSI (c) (68:70) [08:34:52:065]: Machine policy value 'AllowLockdownPatch' is
    0
    MSI (c) (68:70) [08:34:52:066]: Machine policy value 'DisableMsi' is 0
    MSI (c) (68:70) [08:34:52:066]: Machine policy value 'AlwaysInstallElevated' is
    0
    MSI (c) (68:70) [08:34:52:066]: User policy value 'AlwaysInstallElevated' is 0
    MSI (c) (68:70) [08:34:52:066]: Running product '{55D13F49-FCB8-4892-
    8266-05D373FCAA61}' with user privileges: It's not assigned.
    MSI (c) (68:70) [08:34:52:067]: Machine policy value 'DisableLUAPatching' is 0
    MSI (c) (68:70) [08:34:52:067]: Machine policy value
    'DisableFlyWeightPatching' is 0
    MSI (c) (68:70) [08:34:52:068]: Enabling baseline caching for this transaction
    since all active patches are MSI 3.0 style MSPs or at least one MSI 3.0 minor
    update patch is active
    MSI (c) (68:70) [08:34:52:071]: APPCOMPAT: looking for appcompat database
    entry with ProductCode '{55D13F49-FCB8-4892-8266-05D373FCAA61}'.
    MSI (c) (68:70) [08:34:52:072]: APPCOMPAT: no matching ProductCode found
    in database.
    MSI (c) (68:70) [08:34:52:072]: Transforms are not secure.
    MSI (c) (68:70) [08:34:52:073]: PROPERTY CHANGE: Adding MsiLogFileLocation
    property. Its value is 'C:\Users\Steve\AppData\Local\Temp\MSIa5745.LOG'.
    MSI (c) (68:70) [08:34:52:073]: Command Line: CURRENTDIRECTORY=C:\Users
    \Steve\Downloads CLIENTUILEVEL=0 CLIENTPROCESSID=9576
    MSI (c) (68:70) [08:34:52:073]: PROPERTY CHANGE: Adding PackageCode
    property. Its value is '{1C7C3009-013E-4A16-9A0F-0000FB80A613}'.
    MSI (c) (68:70) [08:34:52:073]: Product Code passed to Engine.Initialize:        
    MSI (c) (68:70) [08:34:52:073]: Product Code from property table before
    transforms: '{55D13F49-FCB8-4892-8266-05D373FCAA61}'
    MSI (c) (68:70) [08:34:52:073]: Product Code from property table after
    transforms:  '{55D13F49-FCB8-4892-8266-05D373FCAA61}'
    MSI (c) (68:70) [08:34:52:073]: Product not registered: beginning first-time
    install
    MSI (c) (68:70) [08:34:52:073]: PROPERTY CHANGE: Adding ProductState
    property. Its value is '-1'.
    MSI (c) (68:70) [08:34:52:073]: Entering
    CMsiConfigurationManager::SetLastUsedSource.
    MSI (c) (68:70) [08:34:52:073]: User policy value 'SearchOrder' is 'nmu'
    MSI (c) (68:70) [08:34:52:073]: Adding new sources is allowed.
    MSI (c) (68:70) [08:34:52:074]: PROPERTY CHANGE: Adding
    PackagecodeChanging property. Its value is '1'.
    MSI (c) (68:70) [08:34:52:074]: Package name extracted from package path:
    'MicrosoftFixit50381.msi'
    MSI (c) (68:70) [08:34:52:075]: Package to be registered:
    'MicrosoftFixit50381.msi'
    MSI (c) (68:70) [08:34:52:075]: Note: 1: 2262 2: Error 3: -2147287038
    MSI (c) (68:70) [08:34:52:078]: Note: 1: 2262 2: AdminProperties 3: -
    2147287038
    MSI (c) (68:70) [08:34:52:078]: Machine policy value 'AlwaysInstallElevated' is
    0
    MSI (c) (68:70) [08:34:52:078]: User policy value 'AlwaysInstallElevated' is 0
    MSI (c) (68:70) [08:34:52:079]: Running product '{55D13F49-FCB8-4892-
    8266-05D373FCAA61}' with user privileges: It's not assigned.
    MSI (c) (68:70) [08:34:52:079]: PROPERTY CHANGE: Adding
    CURRENTDIRECTORY property. Its value is 'C:\Users\Steve\Downloads'.
    MSI (c) (68:70) [08:34:52:079]: PROPERTY CHANGE: Adding CLIENTUILEVEL
    property. Its value is '0'.
    MSI (c) (68:70) [08:34:52:079]: PROPERTY CHANGE: Adding CLIENTPROCESSID
    property. Its value is '9576'.
    MSI (c) (68:70) [08:34:52:079]: PROPERTY CHANGE: Adding
    MsiSystemRebootPending property. Its value is '1'.
    MSI (c) (68:70) [08:34:52:079]: TRANSFORMS property is now:
    MSI (c) (68:70) [08:34:52:079]: PROPERTY CHANGE: Adding VersionDatabase
    property. Its value is '200'.
    MSI (c) (68:70) [08:34:52:081]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\AppData\Roaming
    MSI (c) (68:70) [08:34:52:082]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\Favorites
    MSI (c) (68:70) [08:34:52:084]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\AppData\Roaming\Microsoft\Windows\Network Shortcuts
    MSI (c) (68:70) [08:34:52:085]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\Documents
    MSI (c) (68:70) [08:34:52:086]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
    MSI (c) (68:70) [08:34:52:088]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\AppData\Roaming\Microsoft\Windows\Recent
    MSI (c) (68:70) [08:34:52:089]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (c) (68:70) [08:34:52:091]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\AppData\Roaming\Microsoft\Windows\Templates
    MSI (c) (68:70) [08:34:52:092]: SHELL32::SHGetFolderPath returned: C:
    \ProgramData
    MSI (c) (68:70) [08:34:52:093]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\AppData\Local
    MSI (c) (68:70) [08:34:52:094]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\Pictures
    MSI (c) (68:70) [08:34:52:097]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    \Administrative Tools
    MSI (c) (68:70) [08:34:52:098]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    \Startup
    MSI (c) (68:70) [08:34:52:099]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    MSI (c) (68:70) [08:34:52:101]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\AppData\Roaming\Microsoft\Windows\Start Menu
    MSI (c) (68:70) [08:34:52:102]: SHELL32::SHGetFolderPath returned: C:
    \Users\Steve\Desktop
    MSI (c) (68:70) [08:34:52:104]: SHELL32::SHGetFolderPath returned: C:
    \ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (c) (68:70) [08:34:52:106]: SHELL32::SHGetFolderPath returned: C:
    \ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (c) (68:70) [08:34:52:106]: SHELL32::SHGetFolderPath returned: C:
    \ProgramData\Microsoft\Windows\Start Menu\Programs
    MSI (c) (68:70) [08:34:52:107]: SHELL32::SHGetFolderPath returned: C:
    \ProgramData\Microsoft\Windows\Start Menu
    MSI (c) (68:70) [08:34:52:109]: SHELL32::SHGetFolderPath returned: C:
    \Users\Public\Desktop
    MSI (c) (68:70) [08:34:52:113]: SHELL32::SHGetFolderPath returned: C:
    \windows\Fonts
    MSI (c) (68:70) [08:34:52:115]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans
    Serif 4: 0 5: 16
    MSI (c) (68:70) [08:34:52:147]: MSI_LUA: Setting AdminUser property to 1
    because this is the client or the user has already permitted elevation
    MSI (c) (68:70) [08:34:52:147]: PROPERTY CHANGE: Adding AdminUser
    property. Its value is '1'.
    MSI (c) (68:70) [08:34:52:147]: PROPERTY CHANGE: Adding Privileged
    property. Its value is '1'.
    MSI (c) (68:70) [08:34:52:148]: Note: 1: 1402 2: HKEY_CURRENT_USER
    \Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (c) (68:70) [08:34:52:148]: PROPERTY CHANGE: Adding USERNAME
    property. Its value is 'Steve'.
    MSI (c) (68:70) [08:34:52:149]: Note: 1: 1402 2: HKEY_CURRENT_USER
    \Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (c) (68:70) [08:34:52:149]: PROPERTY CHANGE: Adding DATABASE
    property. Its value is 'C:\Users\Steve\Downloads\MicrosoftFixit50381.msi'.
    MSI (c) (68:70) [08:34:52:149]: PROPERTY CHANGE: Adding OriginalDatabase
    property. Its value is 'C:\Users\Steve\Downloads\MicrosoftFixit50381.msi'.
    MSI (c) (68:70) [08:34:52:149]: Machine policy value 'MsiDisableEmbeddedUI' is
    0
    MSI (c) (68:70) [08:34:52:149]: PROPERTY CHANGE: Adding SourceDir
    property. Its value is 'C:\Users\Steve\Downloads\'.
    MSI (c) (68:70) [08:34:52:149]: PROPERTY CHANGE: Adding SOURCEDIR
    property. Its value is 'C:\Users\Steve\Downloads\'.
    MSI (c) (68:6C) [08:34:52:153]: PROPERTY CHANGE: Adding VersionHandler
    property. Its value is '5.00'.
    === Logging started: 25/04/2013  08:34:52 ===
    MSI (c) (68:70) [08:34:52:171]: Note: 1: 2262 2: PatchPackage 3: -
    2147287038
    MSI (c) (68:70) [08:34:52:172]: Machine policy value 'DisableRollback' is 0
    MSI (c) (68:70) [08:34:52:172]: User policy value 'DisableRollback' is 0
    MSI (c) (68:70) [08:34:52:172]: PROPERTY CHANGE: Adding UILevel property.
    Its value is '5'.
    MSI (c) (68:70) [08:34:52:172]: Note: 1: 2262 2: Font 3: -2147287038
    MSI (c) (68:70) [08:34:52:174]: PROPERTY CHANGE: Adding ACTION property.
    Its value is 'INSTALL'.
    MSI (c) (68:70) [08:34:52:174]: Doing action: INSTALL
    Action 08:34:52: INSTALL.
    Action start 08:34:52: INSTALL.
    MSI (c) (68:70) [08:34:52:176]: UI Sequence table 'InstallUISequence' is
    present and populated.
    MSI (c) (68:70) [08:34:52:176]: Running UISequence
    MSI (c) (68:70) [08:34:52:176]: PROPERTY CHANGE: Adding EXECUTEACTION
    property. Its value is 'INSTALL'.
    MSI (c) (68:70) [08:34:52:176]: Doing action: Milestone_ERRCA_UIAN726
    Action 08:34:52: Milestone_ERRCA_UIAN726.
    Action start 08:34:52: Milestone_ERRCA_UIAN726.
    MSI (c) (68:70) [08:34:52:177]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT
    `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM
    `CustomAction` WHERE `Action` = 'Milestone_ERRCA_UIAN726'
    MSI (c) (68:70) [08:34:52:178]: PROPERTY CHANGE: Adding Milestone
    property. Its value is 'ERRCA_UIANDADVERTISED'.
    Action ended 08:34:52: Milestone_ERRCA_UIAN726. Return value 1.
    MSI (c) (68:70) [08:34:52:178]: Skipping action: ERRCA_UIANDADVERTISED
    (condition is false)
    MSI (c) (68:70) [08:34:52:178]: Doing action: Milestone_AppSearch122
    Action 08:34:52: Milestone_AppSearch122.
    Action start 08:34:52: Milestone_AppSearch122.
    MSI (c) (68:70) [08:34:52:180]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT
    `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM
    `CustomAction` WHERE `Action` = 'Milestone_AppSearch122'
    MSI (c) (68:70) [08:34:52:180]: PROPERTY CHANGE: Modifying Milestone
    property. Its current value is 'ERRCA_UIANDADVERTISED'. Its new value:
    'AppSearch'.
    Action ended 08:34:52: Milestone_AppSearch122. Return value 1.
    MSI (c) (68:70) [08:34:52:181]: Doing action: AppSearch
    Action 08:34:52: AppSearch. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 08:34:52: AppSearch.
    MSI (c) (68:70) [08:34:52:182]: Note: 1: 2262 2: AppSearch 3: -2147287038
    Action ended 08:34:52: AppSearch. Return value 1.
    MSI (c) (68:70) [08:34:52:183]: Doing action: FindRelatedProducts
    Action 08:34:52: FindRelatedProducts. {\FinalUIFont}
    [PROGRESS_RESTORE_TXT]
    Action start 08:34:52: FindRelatedProducts.
    Action ended 08:34:52: FindRelatedProducts. Return value 1.
    MSI (c) (68:70) [08:34:52:185]: Doing action: Milestone_EulaForm201
    Action 08:34:52: Milestone_EulaForm201.
    Action start 08:34:52: Milestone_EulaForm201.
    MSI (c) (68:70) [08:34:52:186]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT
    `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM
    `CustomAction` WHERE `Action` = 'Milestone_EulaForm201'
    MSI (c) (68:70) [08:34:52:187]: PROPERTY CHANGE: Modifying Milestone
    property. Its current value is 'AppSearch'. Its new value: 'EulaForm'.
    Action ended 08:34:52: Milestone_EulaForm201. Return value 1.
    MSI (c) (68:70) [08:34:52:187]: Doing action: EulaForm
    Action 08:34:52: EulaForm.
    Action start 08:34:52: EulaForm.
    MSI (c) (68:70) [08:34:52:193]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT
    `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM
    `CustomAction` WHERE `Action` = 'EulaForm'
    MSI (c) (68:6C) [08:34:52:205]: Note: 1: 2262 2: Error 3: -2147287038
    Info 2898.For VSI_MS_Sans_Serif13.0_0_0 textstyle, the system created a 'MS
    Sans Serif' font, in 0 character set, of 13 pixels height.
    MSI (c) (68:6C) [08:34:52:221]: Note: 1: 2262 2: Error 3: -2147287038
    Info 2898.For VsdDefaultUIFont.524F4245_5254_5341_4C45_534153783400
    textstyle, the system created a 'MS Sans Serif' font, in 0 character set, of 13
    pixels height.
    MSI (c) (68:6C) [08:34:52:225]: Note: 1: 2262 2: Error 3: -2147287038
    Info 2898.For VSI_MS_Sans_Serif16.0_1_0 textstyle, the system created a 'MS
    Sans Serif' font, in 0 character set, of 20 pixels height.
    MSI (c) (68:6C) [08:34:52:301]: Note: 1: 2262 2: CheckBox 3: -2147287038
    Action 08:34:52: EulaForm. Dialog created
    MSI (c) (68:10) [08:34:52:312]: Note: 1: 2731 2: 0
    MSI (c) (68:6C) [08:34:55:670]: PROPERTY CHANGE: Adding EulaForm_Property
    property. Its value is '1'.
    Action ended 08:34:56: EulaForm. Return value 1.
    MSI (c) (68:70) [08:34:56:881]: Doing action: EULAACCEPTED_ACTION
    Action 08:34:56: EULAACCEPTED_ACTION.
    Action start 08:34:56: EULAACCEPTED_ACTION.
    MSI (c) (68:70) [08:34:56:883]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT
    `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM
    `CustomAction` WHERE `Action` = 'EULAACCEPTED_ACTION'
    MSI (c) (68:70) [08:34:56:883]: PROPERTY CHANGE: Adding EULAACCEPTED
    property. Its value is '1'.
    Action ended 08:34:56: EULAACCEPTED_ACTION. Return value 1.
    MSI (c) (68:70) [08:34:56:884]: Doing action: Milestone_LaunchCond24
    Action 08:34:56: Milestone_LaunchCond24.
    Action start 08:34:56: Milestone_LaunchCond24.
    MSI (c) (68:70) [08:34:56:886]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT
    `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM
    `CustomAction` WHERE `Action` = 'Milestone_LaunchCond24'
    MSI (c) (68:70) [08:34:56:887]: PROPERTY CHANGE: Modifying Milestone
    property. Its current value is 'EulaForm'. Its new value: 'LaunchConditions'.
    Action ended 08:34:56: Milestone_LaunchCond24. Return value 1.
    MSI (c) (68:70) [08:34:56:889]: Doing action: LaunchConditions
    Action 08:34:56: LaunchConditions. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 08:34:56: LaunchConditions.
    Action ended 08:34:56: LaunchConditions. Return value 1.
    MSI (c) (68:70) [08:34:56:891]: Doing action: CCPSearch
    Action 08:34:56: CCPSearch. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 08:34:56: CCPSearch.
    MSI (c) (68:70) [08:34:56:892]: Note: 1: 2262 2: CCPSearch 3: -2147287038
    Action ended 08:34:56: CCPSearch. Return value 1.
    MSI (c) (68:70) [08:34:56:892]: Doing action: RMCCPSearch
    Action 08:34:56: RMCCPSearch. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 08:34:56: RMCCPSearch.
    MSI (c) (68:70) [08:34:56:893]: Note: 1: 2262 2: CCPSearch 3: -2147287038
    Action ended 08:34:56: RMCCPSearch. Return value 0.
    MSI (c) (68:70) [08:34:56:894]: Doing action: ValidateProductID
    Action 08:34:56: ValidateProductID. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 08:34:56: ValidateProductID.
    Action ended 08:34:56: ValidateProductID. Return value 1.
    MSI (c) (68:70) [08:34:56:895]: Doing action: Milestone_DIRCA_TARG947
    Action 08:34:56: Milestone_DIRCA_TARG947.
    Action start 08:34:56: Milestone_DIRCA_TARG947.
    MSI (c) (68:70) [08:34:56:897]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT
    `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM
    `CustomAction` WHERE `Action` = 'Milestone_DIRCA_TARG947'
    MSI (c) (68:70) [08:34:56:897]: PROPERTY CHANGE: Modifying Milestone
    property. Its current value is 'LaunchConditions'. Its new value:
    'DIRCA_TARGETDIR'.
    Action ended 08:34:56: Milestone_DIRCA_TARG947. Return value 1.
    MSI (c) (68:70) [08:34:56:897]: Doing action: DIRCA_TARGETDIR
    Action 08:34:56: DIRCA_TARGETDIR. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 08:34:56: DIRCA_TARGETDIR.
    MSI (c) (68:70) [08:34:56:899]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT
    `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM
    `CustomAction` WHERE `Action` = 'DIRCA_TARGETDIR'
    MSI (c) (68:70) [08:34:56:900]: PROPERTY CHANGE: Adding TARGETDIR
    property. Its value is 'C:\Program Files\Microsoft\Microsoft Fix it 50381'.
    Action ended 08:34:56: DIRCA_TARGETDIR. Return value 1.
    MSI (c) (68:70) [08:34:56:900]: Doing action: CostInitialize
    Action 08:34:56: CostInitialize. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 08:34:56: CostInitialize.
    MSI (c) (68:70) [08:34:56:901]: Machine policy value 'MaxPatchCacheSize' is
    10
    MSI (c) (68:70) [08:34:56:901]: Baseline: Sorting baselines for {55D13F49-
    FCB8-4892-8266-05D373FCAA61}.
    MSI (c) (68:70) [08:34:56:901]: Baseline: New baseline 2.1.3 from transaction.
    MSI (c) (68:70) [08:34:56:902]: Baseline: Sorted order Native: Order 0.
    MSI (c) (68:70) [08:34:56:902]: Baseline Data Table:
    MSI (c) (68:70) [08:34:56:902]: ProductCode: {55D13F49-FCB8-4892-8266-
    05D373FCAA61} Version: 2.1.3 Attributes: 0 PatchId: Native BaselineId: -
    2147483648 Order: 0
    MSI (c) (68:70) [08:34:56:902]: Baseline File Table:
    MSI (c) (68:70) [08:34:56:912]: PROPERTY CHANGE: Adding ROOTDRIVE
    property. Its value is 'D:\'.
    MSI (c) (68:70) [08:34:56:913]: PROPERTY CHANGE: Adding CostingComplete
    property. Its value is '0'.
    Action ended 08:34:56: CostInitialize. Return value 1.
    MSI (c) (68:70) [08:34:56:914]: Doing action: FileCost
    Action 08:34:56: FileCost. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 08:34:56: FileCost.
    MSI (c) (68:70) [08:34:56:915]: Note: 1: 2262 2: MsiAssembly 3: -2147287038
    MSI (c) (68:70) [08:34:56:916]: Note: 1: 2262 2: RemoveFile 3: -2147287038
    MSI (c) (68:70) [08:34:56:916]: Note: 1: 2262 2: MoveFile 3: -2147287038
    MSI (c) (68:70) [08:34:56:916]: Note: 1: 2262 2: DuplicateFile 3: -2147287038
    MSI (c) (68:70) [08:34:56:916]: Note: 1: 2262 2: Shortcut 3: -2147287038
    MSI (c) (68:70) [08:34:56:917]: Note: 1: 2262 2: Class 3: -2147287038
    MSI (c) (68:70) [08:34:56:917]: Note: 1: 2262 2: Extension 3: -2147287038
    MSI (c) (68:70) [08:34:56:917]: Note: 1: 2262 2: TypeLib 3: -2147287038
    MSI (c) (68:70) [08:34:56:917]: Note: 1: 2262 2: IniFile 3: -2147287038
    MSI (c) (68:70) [08:34:56:917]: Note: 1: 2262 2: ReserveCost 3: -2147287038
    Action ended 08:34:56: FileCost. Return value 1.
    MSI (c) (68:70) [08:34:56:917]: Doing action: IsolateComponents
    Action 08:34:56: IsolateComponents. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 08:34:56: IsolateComponents.
    MSI (c) (68:70) [08:34:56:919]: Note: 1: 2262 2: BindImage 3: -2147287038
    MSI (c) (68:70) [08:34:56:919]: Note: 1: 2262 2: IsolatedComponent 3: -
    2147287038
    MSI (c) (68:70) [08:34:56:919]: Note: 1: 2262 2: Patch 3: -2147287038
    Action ended 08:34:56: IsolateComponents. Return value 1.
    MSI (c) (68:70) [08:34:56:920]: Skipping action: ResumeForm (condition is
    false)
    MSI (c) (68:70) [08:34:56:920]: Skipping action: MaintenanceForm (condition
    is false)
    MSI (c) (68:70) [08:34:56:920]: Doing action: CostFinalize
    Action 08:34:56: CostFinalize. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 08:34:56: CostFinalize.
    MSI (c) (68:70) [08:34:56:920]: PROPERTY CHANGE: Adding OutOfDiskSpace
    property. Its value is '0'.
    MSI (c) (68:70) [08:34:56:920]: PROPERTY CHANGE: Adding
    OutOfNoRbDiskSpace property. Its value is '0'.
    MSI (c) (68:70) [08:34:56:920]: PROPERTY CHANGE: Adding
    PrimaryVolumeSpaceAvailable property. Its value is '0'.
    MSI (c) (68:70) [08:34:56:920]: PROPERTY CHANGE: Adding
    PrimaryVolumeSpaceRequired property. Its value is '0'.
    MSI (c) (68:70) [08:34:56:921]: PROPERTY CHANGE: Adding
    PrimaryVolumeSpaceRemaining property. Its value is '0'.
    MSI (c) (68:70) [08:34:56:921]: Note: 1: 2262 2: Patch 3: -2147287038
    MSI (c) (68:70) [08:34:56:921]: Note: 1: 2262 2: Condition 3: -2147287038
    MSI (c) (68:70) [08:34:56:923]: PROPERTY CHANGE: Modifying TARGETDIR
    property. Its current value is 'C:\Program Files\Microsoft\Microsoft Fix it 50381'.
    Its new value: 'C:\Program Files\Microsoft\Microsoft Fix it 50381\'.
    MSI (c) (68:70) [08:34:56:923]: Target path resolution complete. Dumping
    Directory table...
    MSI (c) (68:70) [08:34:56:923]: Note: target paths subject to change (via
    custom actions or browsing)
    MSI (c) (68:70) [08:34:56:923]: Dir (target): Key: TARGETDIR          , Object: C:
    \Program Files\Microsoft\Microsoft Fix it 50381\
    MSI (c) (68:70) [08:34:56:923]: Dir (target): Key: WindowsFolder          , Object: C:
    \windows\
    MSI (c) (68:70) [08:34:56:923]: Dir (target): Key: ProgramMenuFolder          ,
    Object: C:\Users\Steve\AppData\Roaming\Microsoft\Windows\Start Menu
    \Programs\
    MSI (c) (68:70) [08:34:56:923]: Dir (target): Key: DesktopFolder          , Object: C:
    \Users\Steve\Desktop\
    MSI (c) (68:70) [08:34:56:923]: PROPERTY CHANGE: Adding INSTALLLEVEL
    property. Its value is '1'.
    MSI (c) (68:70) [08:34:56:923]: Note: 1: 2262 2: IsolatedComponent 3: -
    2147287038
    MSI (c) (68:70) [08:34:56:924]: Note: 1: 2262 2: BindImage 3: -2147287038
    MSI (c) (68:70) [08:34:56:924]: Note: 1: 2262 2: Patch 3: -2147287038
    MSI (c) (68:70) [08:34:56:924]: Note: 1: 2262 2: RemoveFile 3: -2147287038
    Action ended 08:34:56: CostFinalize. Return value 1.
    MSI (c) (68:70) [08:34:56:925]: Doing action: ProgressForm
    Action 08:34:56: ProgressForm.
    Action start 08:34:56: ProgressForm.
    MSI (c) (68:70) [08:34:56:926]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT
    `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM
    `CustomAction` WHERE `Action` = 'ProgressForm'
    MSI (c) (68:6C) [08:34:56:938]: Note: 1: 2262 2: Error 3: -2147287038
    DEBUG: Error 2826:  Control Line1 on dialog ProgressForm extends beyond the
    boundaries of the dialog to the right by 3 pixels
    The installer has encountered an unexpected error installing this package. This
    may indicate a problem with this package. The error code is 2826. The
    arguments are: ProgressForm, Line1, to the right
    MSI (c) (68:6C) [08:34:56:941]: Note: 1: 2262 2: Error 3: -2147287038
    DEBUG: Error 2826:  Control Line2 on dialog ProgressForm extends beyond the
    boundaries of the dialog to the right by 3 pixels
    The installer has encountered an unexpected error installing this package. This
    may indicate a problem with this package. The error code is 2826. The
    arguments are: ProgressForm, Line2, to the right
    MSI (c) (68:6C) [08:34:56:948]: Note: 1: 2262 2: Error 3: -2147287038
    DEBUG: Error 2826:  Control BannerBmp on dialog ProgressForm extends beyond
    the boundaries of the dialog to the right by 3 pixels
    The installer has encountered an unexpected error installing this package. This
    may indicate a problem with this package. The error code is 2826. The
    arguments are: ProgressForm, BannerBmp, to the right
    Action 08:34:56: ProgressForm. Dialog created
    Action ended 08:34:57: ProgressForm. Return value 1.
    MSI (c) (68:70) [08:34:57:011]: Doing action: ExecuteAction
    Action 08:34:57: ExecuteAction. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    MSI (c) (68:6C) [08:34:57:012]: Note: 1: 2262 2: Error 3: -2147287038
    Info 2898.For FinalUIFont textstyle, the system created a 'Arial' font, in 0
    character set, of 15 pixels height.
    Action start 08:34:57: ExecuteAction.
    MSI (c) (68:70) [08:34:57:035]: PROPERTY CHANGE: Adding SECONDSEQUENCE
    property. Its value is '1'.
    MSI (c) (68:70) [08:34:57:043]: Grabbed execution mutex.
    MSI (c) (68:70) [08:34:57:043]: Incrementing counter to disable shutdown.
    Counter after increment: 0
    MSI (c) (68:70) [08:34:57:045]: Switching to server: TARGETDIR="C:\Program
    Files\Microsoft\Microsoft Fix it 50381\" EULAACCEPTED="1"
    CURRENTDIRECTORY="C:\Users\Steve\Downloads" CLIENTUILEVEL="0"
    CLIENTPROCESSID="9576" USERNAME="Steve" SOURCEDIR="C:\Users\Steve
    \Downloads\" ACTION="INSTALL" EXECUTEACTION="INSTALL" ROOTDRIVE="D:\"
    INSTALLLEVEL="1" SECONDSEQUENCE="1"  ADDLOCAL=DefaultFeature 
    MSI (s) (C8:D4) [08:34:57:086]: Running installation inside multi-package
    transaction C:\Users\Steve\Downloads\MicrosoftFixit50381.msi
    MSI (s) (C8:D4) [08:34:57:086]: Grabbed execution mutex.
    MSI (s) (C8:BC) [08:34:57:092]: Resetting cached policy values
    MSI (s) (C8:BC) [08:34:57:092]: Machine policy value 'Debug' is 0
    MSI (s) (C8:BC) [08:34:57:092]: ******* RunEngine:
               ******* Product: C:\Users\Steve\Downloads\MicrosoftFixit50381.msi
               ******* Action: INSTALL
               ******* CommandLine: **********
    MSI (s) (C8:BC) [08:34:57:096]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (C8:BC) [08:34:57:097]: Setting cached product context: User non-
    assigned for product: 48945AC3B41AEF24F91FE79A10157D52
    MSI (s) (C8:BC) [08:34:57:097]: Using cached product context: User non-
    assigned for product: 48945AC3B41AEF24F91FE79A10157D52
    MSI (s) (C8:BC) [08:34:57:099]: Setting cached product context: User non-
    assigned for product: 6BBFDF96D153C8B4988D68D79C0D2A4A
    MSI (s) (C8:BC) [08:34:57:099]: Using cached product context: User non-
    assigned for product: 6BBFDF96D153C8B4988D68D79C0D2A4A
    MSI (s) (C8:BC) [08:34:57:101]: Setting cached product context: User non-
    assigned for product: CAB1E4D953B64F542BD433D9568A0AB6
    MSI (s) (C8:BC) [08:34:57:101]: Using cached product context: User non-
    assigned for product: CAB1E4D953B64F542BD433D9568A0AB6
    MSI (s) (C8:BC) [08:34:57:103]: Setting cached product context: User non-
    assigned for product: DED5B648C8CDA1E45B4BF9B5930AACEC
    MSI (s) (C8:BC) [08:34:57:103]: Using cached product context: User non-
    assigned for product: DED5B648C8CDA1E45B4BF9B5930AACEC
    MSI (s) (C8:BC) [08:34:57:104]: Setting cached product context: User non-
    assigned for product: E2EE924EC67B3554B8404B55780FF01D
    MSI (s) (C8:BC) [08:34:57:104]: Using cached product context: User non-
    assigned for product: E2EE924EC67B3554B8404B55780FF01D
    MSI (s) (C8:BC) [08:34:57:106]: Setting cached product context: machine
    assigned for product: 00002109001001400000000000F01FEC
    MSI (s) (C8:BC) [08:34:57:106]: Using cached product context: machine
    assigned for product: 00002109001001400000000000F01FEC
    MSI (s) (C8:BC) [08:34:57:107]: Setting cached product context: machine
    assigned for product: 00002109001031400000000000F01FEC
    MSI (s) (C8:BC) [08:34:57:108]: Using cached product context: machine
    assigned for product: 00002109001031400000000000F01FEC
    MSI (s) (C8:BC) [08:34:57:110]: Setting cached product context: machine
    assigned for product: 00002109001070400000000000F01FEC
    MSI (s) (C8:BC) [08:34:57:110]: Using cached product context: machine
    assigned for product: 00002109001070400000000000F01FEC
    MSI (s) (C8:BC) [08:34:57:111]: Setting cached product context: machine
    assigned for product: 000021090010C0400000000000F01FEC
    MSI (s) (C8:BC) [08:34:57:111]: Using cached product context: machine

    Hi Chris,
    The AIR installation log is in my original post - about 12 paras down but here is is:
    [2013-04-25:06:53:46] Runtime Installer begin with version 3.7.0.1530 on Windows Vista x86
    [2013-04-25:06:53:46] Commandline is:
    [2013-04-25:06:53:46] No installed runtime detected
    [2013-04-25:06:53:57] Relaunching with elevation
    [2013-04-25:06:53:57] Launching subprocess with commandline c:\users\steve\appdata\local\temp\air79c1.tmp\adobe air installer.exe -ei
    [2013-04-25:06:54:02] Runtime Installer begin with version 3.7.0.1530 on Windows 7 x86
    [2013-04-25:06:54:02] Commandline is: -stdio \\.\pipe\AIR_1172_0 -ei
    [2013-04-25:06:54:02] No installed runtime detected
    [2013-04-25:06:54:03] Starting silent runtime install. Installing runtime version 3.7.0.1530
    [2013-04-25:06:54:04] Installing msi at c:\users\steve\appdata\local\temp\air79c1.tmp\setup.msi with guid {A0087DDE-69D0-11E2-AD57-43CA6188709B}
    [2013-04-25:06:54:10] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:06:54:10] Rolling back install of c:\users\steve\appdata\local\temp\air79c1.tmp\setup.msi
    [2013-04-25:06:54:10] Rollback complete
    [2013-04-25:06:54:10] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:06:54:10] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:06:54:10] Runtime Installer end with exit code 7
    [2013-04-25:06:54:20] Runtime Installer end with exit code 7
    [2013-04-25:06:55:38] Runtime Installer begin with version 3.7.0.1530 on Windows Vista x86
    [2013-04-25:06:55:38] Commandline is:
    [2013-04-25:06:55:38] No installed runtime detected
    [2013-04-25:06:55:45] Relaunching with elevation
    [2013-04-25:06:55:45] Launching subprocess with commandline c:\users\steve\appdata\local\temp\air30fe.tmp\adobe air installer.exe -ei
    [2013-04-25:06:55:48] Runtime Installer begin with version 3.7.0.1530 on Windows Vista x86
    [2013-04-25:06:55:48] Commandline is: -stdio \\.\pipe\AIR_1264_0 -ei
    [2013-04-25:06:55:48] No installed runtime detected
    [2013-04-25:06:55:49] Starting silent runtime install. Installing runtime version 3.7.0.1530
    [2013-04-25:06:55:51] Installing msi at c:\users\steve\appdata\local\temp\air30fe.tmp\setup.msi with guid {A0087DDE-69D0-11E2-AD57-43CA6188709B}
    [2013-04-25:06:55:55] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:06:55:55] Rolling back install of c:\users\steve\appdata\local\temp\air30fe.tmp\setup.msi
    [2013-04-25:06:55:55] Rollback complete
    [2013-04-25:06:55:55] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:06:55:55] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:06:55:55] Runtime Installer end with exit code 7
    [2013-04-25:06:55:59] Runtime Installer end with exit code 7
    [2013-04-25:07:05:12] Runtime Installer begin with version 3.7.0.1530 on Windows 7 x86
    [2013-04-25:07:05:12] Commandline is:
    [2013-04-25:07:05:12] No installed runtime detected
    [2013-04-25:07:05:18] Relaunching with elevation
    [2013-04-25:07:05:18] Launching subprocess with commandline c:\users\steve\appdata\local\temp\air953.tmp\adobe air installer.exe -ei
    [2013-04-25:07:05:24] Runtime Installer begin with version 3.7.0.1530 on Windows 7 x86
    [2013-04-25:07:05:24] Commandline is: -stdio \\.\pipe\AIR_3888_0 -ei
    [2013-04-25:07:05:24] No installed runtime detected
    [2013-04-25:07:05:24] Starting silent runtime install. Installing runtime version 3.7.0.1530
    [2013-04-25:07:05:26] Installing msi at c:\users\steve\appdata\local\temp\air953.tmp\setup.msi with guid {A0087DDE-69D0-11E2-AD57-43CA6188709B}
    [2013-04-25:07:05:29] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:05:29] Rolling back install of c:\users\steve\appdata\local\temp\air953.tmp\setup.msi
    [2013-04-25:07:05:29] Rollback complete
    [2013-04-25:07:05:29] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:05:29] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:05:29] Runtime Installer end with exit code 7
    [2013-04-25:07:05:31] Runtime Installer end with exit code 7
    [2013-04-25:07:06:12] Runtime Installer begin with version 3.7.0.1530 on Windows Vista x86
    [2013-04-25:07:06:12] Commandline is:
    [2013-04-25:07:06:12] No installed runtime detected
    [2013-04-25:07:06:21] Relaunching with elevation
    [2013-04-25:07:06:22] Launching subprocess with commandline c:\users\steve\appdata\local\temp\aire916.tmp\adobe air installer.exe -ei
    [2013-04-25:07:06:32] Runtime Installer begin with version 3.7.0.1530 on Windows 7 x86
    [2013-04-25:07:06:32] Commandline is: -stdio \\.\pipe\AIR_5884_0 -ei
    [2013-04-25:07:06:32] No installed runtime detected
    [2013-04-25:07:06:32] Starting silent runtime install. Installing runtime version 3.7.0.1530
    [2013-04-25:07:06:33] Installing msi at c:\users\steve\appdata\local\temp\aire916.tmp\setup.msi with guid {A0087DDE-69D0-11E2-AD57-43CA6188709B}
    [2013-04-25:07:06:37] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:06:37] Rolling back install of c:\users\steve\appdata\local\temp\aire916.tmp\setup.msi
    [2013-04-25:07:06:37] Rollback complete
    [2013-04-25:07:06:37] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:06:37] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:06:37] Runtime Installer end with exit code 7
    [2013-04-25:07:06:40] Runtime Installer end with exit code 7
    [2013-04-25:07:26:15] Runtime Installer begin with version 3.7.0.1530 on Windows Vista x86
    [2013-04-25:07:26:15] Commandline is:
    [2013-04-25:07:26:15] No installed runtime detected
    [2013-04-25:07:26:28] Relaunching with elevation
    [2013-04-25:07:26:28] Launching subprocess with commandline c:\users\steve\appdata\local\temp\air3063.tmp\adobe air installer.exe -ei
    [2013-04-25:07:26:37] Runtime Installer begin with version 3.7.0.1530 on Windows 7 x86
    [2013-04-25:07:26:37] Commandline is: -stdio \\.\pipe\AIR_2348_0 -ei
    [2013-04-25:07:26:37] No installed runtime detected
    [2013-04-25:07:26:37] Starting silent runtime install. Installing runtime version 3.7.0.1530
    [2013-04-25:07:26:39] Installing msi at c:\users\steve\appdata\local\temp\air3063.tmp\setup.msi with guid {A0087DDE-69D0-11E2-AD57-43CA6188709B}
    [2013-04-25:07:26:48] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:26:48] Rolling back install of c:\users\steve\appdata\local\temp\air3063.tmp\setup.msi
    [2013-04-25:07:26:48] Rollback complete
    [2013-04-25:07:26:48] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-04-25:07:26:48] Runtime Installer end with exit code 7
    [2013-04-25:07:46:09] Runtime Installer end with exit code 7

  • Problem Installing P6 v7 Standalone on Windows 7 64 bit

    I am having serious problems installing P6v7 on Windows 7 64 bit, as a Standalone.
    I've installed the Oracle database, version 10g, with no problems
    When I come to install the P6 software as a standalone installation on a laptop it keeps trying to link to the SQL database - as opposed to Oracle for Standalone - and I end up stuck with it asking for a password to the SQL database {the username is already locked as "sa"}, no standard passwords get me through.
    According to my supplier this has happened a few times to others and they are "working on a fix"
    Any advice would be most welcome.

    Hi DeborahZ,
    Truthfully, I have nothing else to suggest other than what you have tried. You can however call HP tech support to see if they are able to offer you a discount on a newer model. If you are in Canada or US call 800 474 6836, or you can Contact HP Worldwide.
    Thanks for reaching out to the HP Forums.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • I had a problem installing icloud on windows 8.1. What should I do? At the end of the installation process there is a error message.

    I had a problem installing icloud on windows 8.1. At the end of the installation process there is a error message.What should I do? 

    I'm guessing that you have checked and complied with the system requirements?
    System Requirements
    Microsoft Windows 7 or 8
    Microsoft Outlook 2007 or later or an up-to-date browser (for Mail, Contacts, Calendars)
    Internet Explorer 9 or later, Firefox 22 or later, or Google Chrome 28 or later (for Bookmarks)
    Broadband Internet access
    Note: If you are upgrading from iCloud Control Panel 1.1 or earlier, you will need to sign out of iCloud Control Panel and uninstall it before downloading iCloud Control Panel 3.1

  • Problems installing Snow Leopard on my MacBook Pro

    I'm having problems installing Snow Leopard on my MacBook Pro.  Help!  The installer log says the following:
    Nov 26 16:31:21 localhost LCA[79]: Folder Manager is being asked to create a folder (cach) while running as uid 0
    Nov 26 16:31:21 localhost LCA[79]: Using keyboard layout 0
    Nov 26 16:31:22 localhost LCA[79]: Found primary language hint "en"
    Nov 26 16:31:26 localhost LCA[79]: Launching the Installer using language code "English"
    Nov 26 16:31:26 localhost OSInstaller[139]: Mac OS X Installer application started
    Nov 26 16:31:26 localhost OSInstaller[139]: 1 display(s) found.
    Nov 26 16:31:26 localhost OSInstaller[139]: Display[1] is using OpenGL acceleration.
    Nov 26 16:31:26 localhost OSInstaller[139]: @(#)PROGRAM:Install  PROJECT:Install-580
    Nov 26 16:31:26 localhost OSInstaller[139]: @(#)PROGRAM:Mac OS X Installer  PROJECT:OSInstaller-262
    Nov 26 16:31:26 localhost OSInstaller[139]: Hardware: MacBookPro1,1 @ 2.16 GHz (x 2), 1024 MB RAM
    Nov 26 16:31:26 localhost OSInstaller[139]: Running OS Build: Mac OS X 10.6.3 (10D575)
    Nov 26 16:31:26 localhost OSInstaller[139]: Env: DYLD_NO_FIX_PREBINDING=1
    Nov 26 16:31:26 localhost OSInstaller[139]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Nov 26 16:31:26 localhost OSInstaller[139]: Env: PWD=/
    Nov 26 16:31:26 localhost OSInstaller[139]: Env: SHLVL=1
    Nov 26 16:31:26 localhost OSInstaller[139]: Env: OS_INSTALL=1
    Nov 26 16:31:26 localhost OSInstaller[139]: Env: _=/System/Installation/CDIS/LCA.app/Contents/MacOS/LCA
    Nov 26 16:31:27 localhost OSInstaller[139]: Using install media product at /System/Installation/Packages
    Nov 26 16:31:27 localhost OSInstaller[139]: Opening OSInstall package '/System/Installation/Packages/OSInstall.mpkg'.
    Nov 26 16:31:30 localhost OSInstaller[139]: Memory statistics for 'Install Mac OS X' pane:
    Nov 26 16:31:30 localhost OSInstaller[139]: Physical Memory Allocation:   197 MB wired,     2 MB trapped,    57 MB active,    22 MB inactive,   746 MB free,   825 MB usable,  1024 MB total
    Nov 26 16:31:46 localhost Unknown[80]: 2011-11-26 16:31:46.646 Disk Utility[147:903] **********
    Nov 26 16:31:46 localhost Unknown[80]: 2011-11-26 16:31:46.721 Disk Utility[147:903] Disk Utility started.
    Nov 26 16:31:46 localhost Unknown[80]:
    Nov 26 16:32:08 localhost Unknown[80]: 2011-11-26 16:32:08.805 Disk Utility[147:903] Verify and Repair volume “Macintosh HD”
    Nov 26 16:32:08 localhost Unknown[80]: 2011-11-26 16:32:08.823 Disk Utility[147:903] Starting repair tool:
    Nov 26 16:32:22 localhost Unknown[80]: 2011-11-26 16:32:22.311 Disk Utility[147:903] Checking Journaled HFS Plus volume.
    Nov 26 16:32:22 localhost Unknown[80]: 2011-11-26 16:32:22.316 Disk Utility[147:903] Checking extents overflow file.
    Nov 26 16:32:22 localhost Unknown[80]: 2011-11-26 16:32:22.318 Disk Utility[147:903] Checking catalog file.
    Nov 26 16:34:18 localhost Unknown[80]: 2011-11-26 16:34:18.870 Disk Utility[147:903] Checking multi-linked files.
    Nov 26 16:34:40 localhost Unknown[80]: 2011-11-26 16:34:40.868 Disk Utility[147:903] Checking catalog hierarchy.
    Nov 26 16:37:49 localhost Unknown[80]: 2011-11-26 16:37:49.539 Disk Utility[147:903] Checking extended attributes file.
    Nov 26 16:37:51 localhost Unknown[80]: 2011-11-26 16:37:51.726 Disk Utility[147:903] Checking volume bitmap.
    Nov 26 16:37:51 localhost Unknown[80]: 2011-11-26 16:37:51.821 Disk Utility[147:903] Checking volume information.
    Nov 26 16:37:51 localhost Unknown[80]: 2011-11-26 16:37:51.853 Disk Utility[147:903] The volume Macintosh HD appears to be OK.
    Nov 26 16:37:56 localhost Unknown[80]: 2011-11-26 16:37:56.748 Disk Utility[147:903] Volume repair complete.
    Nov 26 16:37:57 localhost Unknown[80]: 2011-11-26 16:37:57.047 Disk Utility[147:903] Updating boot support partitions for the volume as required.
    Nov 26 16:37:59 localhost Unknown[80]: 2011-11-26 16:37:59.000 Disk Utility[147:903] Repair tool completed:
    Nov 26 16:37:59 localhost Unknown[80]: 2011-11-26 16:37:59.001 Disk Utility[147:903]
    Nov 26 16:37:59 localhost Unknown[80]: 2011-11-26 16:37:59.032 Disk Utility[147:903]
    Nov 26 16:37:59 localhost Unknown[80]:
    Nov 26 16:49:03 localhost Unknown[80]: 2011-11-26 16:49:03.954 Disk Utility[147:903] NSDocumentController's invocation of -[NSFileManager URLForDirectory:inDomain:appropriateForURL:create:error:] returned nil for NSAutosavedInformationDirectory. Here's the error:
    Nov 26 16:49:03 localhost Unknown[80]: Error Domain=NSCocoaErrorDomain Code=642 UserInfo=0x6054310 "You can’t save the file “Autosave Information” because the volume “Mac OS X Install DVD” is read only." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=30 "The operation couldn’t be completed. Read-only file system")
    Nov 26 16:49:03 localhost Unknown[80]:
    Nov 26 16:49:24 localhost Unknown[80]: 2011-11-26 16:49:24.147 System Profiler[160:903] Error loading /System/Library/SystemProfiler/SPFirewallReporter.spreporter: Error Domain=NSCocoaErrorDomain Code=3587 UserInfo=0x5e5e510 "The bundle “SPFirewallReporter” couldn’t be loaded because it is damaged or missing necessary resources." (dlopen_preflight(/System/Library/SystemProfiler/SPFirewallReporter.spreporter/ Contents/MacOS/SPFirewallReporter): Library not loaded: /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    Nov 26 16:49:24 localhost Unknown[80]:   Referenced from: /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    Nov 26 16:49:24 localhost Unknown[80]:   Reason: image not found)
    Nov 26 16:49:28 localhost Unknown[80]: 2011-11-26 16:49:28.594 System Profiler[160:903] Error loading /System/Library/SystemProfiler/SPPrefPaneReporter.spreporter: Error Domain=NSCocoaErrorDomain Code=3587 UserInfo=0x5e6b700 "The bundle “SPPrefPaneReporter” couldn’t be loaded because it is damaged or missing necessary resources." (dlopen_preflight(/System/Library/SystemProfiler/SPPrefPaneReporter.spreporter/ Contents/MacOS/SPPrefPaneReporter): Library not loaded: /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    Nov 26 16:49:28 localhost Unknown[80]:   Referenced from: /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    Nov 26 16:49:28 localhost Unknown[80]:   Reason: image not found)
    Nov 26 16:49:38 localhost Unknown[80]: 2011-11-26 16:49:38.671 System Profiler[160:903] NSDocumentController's invocation of -[NSFileManager URLForDirectory:inDomain:appropriateForURL:create:error:] returned nil for NSAutosavedInformationDirectory. Here's the error:
    Nov 26 16:49:38 localhost Unknown[80]: Error Domain=NSCocoaErrorDomain Code=642 UserInfo=0x5e2f700 "You can’t save the file “Autosave Information” because the volume “Mac OS X Install DVD” is read only." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=30 "The operation couldn’t be completed. Read-only file system")
    Nov 26 16:49:47 localhost OSInstaller[139]: Allowing machine sleep.
    Nov 26 16:49:50 localhost OSInstaller[139]: Preventing machine sleep.
    Nov 26 16:49:56 localhost OSInstaller[139]: =============================================================================== =
    Nov 26 16:49:56 localhost OSInstaller[139]: Choices selected for installation:
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Mac OS X"
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Essential System Software"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     BaseSystem.pkg : com.apple.pkg.BaseSystem : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Essentials.pkg : com.apple.pkg.Essentials : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     BootCamp.pkg : com.apple.pkg.BootCamp : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     BSD.pkg : com.apple.pkg.BSD : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     iPodSupport.pkg : com.apple.pkg.iPodSupport : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     PodcastCapture.pkg : com.apple.pkg.PodcastCapture : 1.0.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     JavaTools.pkg : com.apple.pkg.JavaTools : 1.0.0.9000000000.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     AdditionalEssentials.pkg : com.apple.pkg.AdditionalEssentials : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     AdditionalSpeechVoices.pkg : com.apple.pkg.AdditionalSpeechVoices : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     AsianLanguagesSupport.pkg : com.apple.pkg.AsianLanguagesSupport : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     MediaFiles.pkg : com.apple.pkg.MediaFiles : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     MigrationAssistant.pkg : com.apple.pkg.MigrationAssistant : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Mail.pkg : com.apple.pkg.Mail : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     AddressBook.pkg : com.apple.pkg.AddressBook : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     iCal.pkg : com.apple.pkg.iCal : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Automator.pkg : com.apple.pkg.Automator : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     DVDPlayer.pkg : com.apple.pkg.DVDPlayer : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     iTunes.pkg : com.apple.pkg.iTunes : 8.2.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     iChat.pkg : com.apple.pkg.iChat : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Java.pkg : com.apple.pkg.Java : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Safari.pkg : com.apple.pkg.Safari : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     OxfordDictionaries.pkg : com.apple.pkg.OxfordDictionaries : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Printer Support"
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Printers Used by This Mac"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetMXSeries.pkg : com.apple.pkg.Canon_InkjetMXSeries : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon068.pkg : com.apple.pkg.EPSON_DriverCommon068 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon050.pkg : com.apple.pkg.EPSON_DriverCommon050 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP07JP002.pkg : com.apple.pkg.EPSON_IJP07JP002 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_ICACommon.pkg : com.apple.pkg.Canon_ICACommon : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW003.pkg : com.apple.pkg.EPSON_IJP09WW003 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_Utility.pkg : com.apple.pkg.Lexmark_Utility : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_ColorLaser.pkg : com.apple.pkg.Brother_ColorLaser : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon003.pkg : com.apple.pkg.EPSON_DriverCommon003 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet1.pkg : com.apple.pkg.HP_Inkjet1 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon012.pkg : com.apple.pkg.EPSON_DriverCommon012 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08JP001.pkg : com.apple.pkg.EPSON_IJP08JP001 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet7.pkg : com.apple.pkg.HP_Inkjet7 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon123.pkg : com.apple.pkg.EPSON_DriverCommon123 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IOKit.pkg : com.apple.pkg.EPSON_IOKit : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries2.pkg : com.apple.pkg.Canon_SharedLibraries2 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_LaserjetZJS.pkg : com.apple.pkg.HP_LaserjetZJS : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetMPSeriesH07xx.pkg : com.apple.pkg.Canon_InkjetMPSeriesH07xx : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW007.pkg : com.apple.pkg.EPSON_IJP09WW007 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_Inkjet08.pkg : com.apple.pkg.Brother_Inkjet08 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries5.pkg : com.apple.pkg.Canon_SharedLibraries5 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon119.pkg : com.apple.pkg.EPSON_DriverCommon119 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_InkjetAIODrivers02.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers02 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon149.pkg : com.apple.pkg.EPSON_DriverCommon149 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon129.pkg : com.apple.pkg.EPSON_DriverCommon129 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon026.pkg : com.apple.pkg.EPSON_DriverCommon026 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08WW007.pkg : com.apple.pkg.EPSON_IJP08WW007 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP07WW004.pkg : com.apple.pkg.EPSON_IJP07WW004 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_PDEs.pkg : com.apple.pkg.Canon_PDEs : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon092.pkg : com.apple.pkg.EPSON_DriverCommon092 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_Common.pkg : com.apple.pkg.Brother_Common : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_MonochromeLaser.pkg : com.apple.pkg.Brother_MonochromeLaser : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_ICAMPSeries07xx.pkg : com.apple.pkg.Canon_ICAMPSeries07xx : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries9.pkg : com.apple.pkg.Canon_SharedLibraries9 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Officejet.pkg : com.apple.pkg.HP_Officejet : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP07WW003.pkg : com.apple.pkg.EPSON_IJP07WW003 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_LaserDrivers.pkg : com.apple.pkg.Lexmark_LaserDrivers : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW004.pkg : com.apple.pkg.EPSON_IJP09WW004 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Chuckwalla.pkg : com.apple.pkg.HP_Chuckwalla : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon011.pkg : com.apple.pkg.EPSON_DriverCommon011 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_Libraries.pkg : com.apple.pkg.EPSON_Libraries : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon087.pkg : com.apple.pkg.EPSON_DriverCommon087 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon122.pkg : com.apple.pkg.EPSON_DriverCommon122 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_DMF.pkg : com.apple.pkg.HP_DMF : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetMPSeriesL07xx.pkg : com.apple.pkg.Canon_InkjetMPSeriesL07xx : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon125.pkg : com.apple.pkg.EPSON_DriverCommon125 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon009.pkg : com.apple.pkg.EPSON_DriverCommon009 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_PhotosmartM.pkg : com.apple.pkg.HP_PhotosmartM : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08WW002.pkg : com.apple.pkg.EPSON_IJP08WW002 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries1.pkg : com.apple.pkg.Canon_SharedLibraries1 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Cmd2HP.pkg : com.apple.pkg.HP_Cmd2HP : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08JP002.pkg : com.apple.pkg.EPSON_IJP08JP002 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08WW003.pkg : com.apple.pkg.EPSON_IJP08WW003 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Samsung_Common.pkg : com.apple.pkg.Samsung_Common : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon059.pkg : com.apple.pkg.EPSON_DriverCommon059 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries10.pkg : com.apple.pkg.Canon_SharedLibraries10 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon047.pkg : com.apple.pkg.EPSON_DriverCommon047 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_PDE.pkg : com.apple.pkg.HP_PDE : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon027.pkg : com.apple.pkg.EPSON_DriverCommon027 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon004.pkg : com.apple.pkg.EPSON_DriverCommon004 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon054.pkg : com.apple.pkg.EPSON_DriverCommon054 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_InkjetAIODrivers01.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers01 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08WW006.pkg : com.apple.pkg.EPSON_IJP08WW006 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon150.pkg : com.apple.pkg.EPSON_DriverCommon150 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_Inkjet.pkg : com.apple.pkg.Brother_Inkjet : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW008.pkg : com.apple.pkg.EPSON_IJP09WW008 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_Utility.pkg : com.apple.pkg.Brother_Utility : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetiPSeriesM0407.pkg : com.apple.pkg.Canon_InkjetiPSeriesM0407 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon069.pkg : com.apple.pkg.EPSON_DriverCommon069 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Fax.pkg : com.apple.pkg.HP_Fax : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon095.pkg : com.apple.pkg.EPSON_DriverCommon095 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetMPSeries0406.pkg : com.apple.pkg.Canon_InkjetMPSeries0406 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon030.pkg : com.apple.pkg.EPSON_DriverCommon030 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_CommandFileFilter.pkg : com.apple.pkg.Lexmark_CommandFileFilter : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_ICA.pkg : com.apple.pkg.EPSON_ICA : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_ICA.pkg : com.apple.pkg.Brother_ICA : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_CHorseD.pkg : com.apple.pkg.HP_CHorseD : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08JP005.pkg : com.apple.pkg.EPSON_IJP08JP005 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries6.pkg : com.apple.pkg.Canon_SharedLibraries6 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Crossbow.pkg : com.apple.pkg.HP_Crossbow : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW005.pkg : com.apple.pkg.EPSON_IJP09WW005 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet8.pkg : com.apple.pkg.HP_Inkjet8 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Photosmart.pkg : com.apple.pkg.HP_Photosmart : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_ICADrivers.pkg : com.apple.pkg.Lexmark_ICADrivers : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP07JP004.pkg : com.apple.pkg.EPSON_IJP07JP004 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_USBComm.pkg : com.apple.pkg.Lexmark_USBComm : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon010.pkg : com.apple.pkg.EPSON_DriverCommon010 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries4.pkg : com.apple.pkg.Canon_SharedLibraries4 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet6.pkg : com.apple.pkg.HP_Inkjet6 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_CUPS.pkg : com.apple.pkg.Lexmark_CUPS : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon083.pkg : com.apple.pkg.EPSON_DriverCommon083 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_SmartX.pkg : com.apple.pkg.HP_SmartX : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP07WW002.pkg : com.apple.pkg.EPSON_IJP07WW002 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon127.pkg : com.apple.pkg.EPSON_DriverCommon127 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08WW005.pkg : com.apple.pkg.EPSON_IJP08WW005 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetProSeries.pkg : com.apple.pkg.Canon_InkjetProSeries : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon028.pkg : com.apple.pkg.EPSON_DriverCommon028 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon066.pkg : com.apple.pkg.EPSON_DriverCommon066 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon046.pkg : com.apple.pkg.EPSON_DriverCommon046 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Interlaken.pkg : com.apple.pkg.HP_Interlaken : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_CHorseL.pkg : com.apple.pkg.HP_CHorseL : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon015.pkg : com.apple.pkg.EPSON_DriverCommon015 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon161.pkg : com.apple.pkg.EPSON_DriverCommon161 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon124.pkg : com.apple.pkg.EPSON_DriverCommon124 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08JP003.pkg : com.apple.pkg.EPSON_IJP08JP003 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon070.pkg : com.apple.pkg.EPSON_DriverCommon070 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon121.pkg : com.apple.pkg.EPSON_DriverCommon121 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_Frameworks.pkg : com.apple.pkg.Canon_Frameworks : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon063.pkg : com.apple.pkg.EPSON_DriverCommon063 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries7.pkg : com.apple.pkg.Canon_SharedLibraries7 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon048.pkg : com.apple.pkg.EPSON_DriverCommon048 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_CHorseI.pkg : com.apple.pkg.HP_CHorseI : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetiPSeries07xx.pkg : com.apple.pkg.Canon_InkjetiPSeries07xx : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon120.pkg : com.apple.pkg.EPSON_DriverCommon120 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_InkjetAIODrivers07.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers07 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Pdf2Pdf.pkg : com.apple.pkg.HP_Pdf2Pdf : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW002.pkg : com.apple.pkg.EPSON_IJP09WW002 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon052.pkg : com.apple.pkg.EPSON_DriverCommon052 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_ICASingle.pkg : com.apple.pkg.Canon_ICASingle : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08JP004.pkg : com.apple.pkg.EPSON_IJP08JP004 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_PS.pkg : com.apple.pkg.HP_PS : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_CHorseIL.pkg : com.apple.pkg.HP_CHorseIL : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Apple_Gutenprint.pkg : com.apple.pkg.Apple_Gutenprint : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_DesignjetIO.pkg : com.apple.pkg.HP_DesignjetIO : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08WW004.pkg : com.apple.pkg.EPSON_IJP08WW004 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Deskjet.pkg : com.apple.pkg.HP_Deskjet : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon130.pkg : com.apple.pkg.EPSON_DriverCommon130 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet3.pkg : com.apple.pkg.HP_Inkjet3 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_ICASingle.pkg : com.apple.pkg.EPSON_ICASingle : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_ResourceManager.pkg : com.apple.pkg.HP_ResourceManager : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW006.pkg : com.apple.pkg.EPSON_IJP09WW006 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon006.pkg : com.apple.pkg.EPSON_DriverCommon006 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon094.pkg : com.apple.pkg.EPSON_DriverCommon094 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon029.pkg : com.apple.pkg.EPSON_DriverCommon029 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet4.pkg : com.apple.pkg.HP_Inkjet4 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_CHorse.pkg : com.apple.pkg.HP_CHorse : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet.pkg : com.apple.pkg.HP_Inkjet : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon148.pkg : com.apple.pkg.EPSON_DriverCommon148 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries3.pkg : com.apple.pkg.Canon_SharedLibraries3 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon001.pkg : com.apple.pkg.EPSON_DriverCommon001 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon126.pkg : com.apple.pkg.EPSON_DriverCommon126 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries8.pkg : com.apple.pkg.Canon_SharedLibraries8 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon071.pkg : com.apple.pkg.EPSON_DriverCommon071 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW001.pkg : com.apple.pkg.EPSON_IJP09WW001 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetiPiXSeries0407.pkg : com.apple.pkg.Canon_InkjetiPiXSeries0407 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon084.pkg : com.apple.pkg.EPSON_DriverCommon084 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Scan.pkg : com.apple.pkg.HP_Scan : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon091.pkg : com.apple.pkg.EPSON_DriverCommon091 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP07WW001.pkg : com.apple.pkg.EPSON_IJP07WW001 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Nearby and Popular Printers"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetMXSeries.pkg : com.apple.pkg.Canon_InkjetMXSeries : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon068.pkg : com.apple.pkg.EPSON_DriverCommon068 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon050.pkg : com.apple.pkg.EPSON_DriverCommon050 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP07JP002.pkg : com.apple.pkg.EPSON_IJP07JP002 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_ICACommon.pkg : com.apple.pkg.Canon_ICACommon : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW003.pkg : com.apple.pkg.EPSON_IJP09WW003 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_Utility.pkg : com.apple.pkg.Lexmark_Utility : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_ColorLaser.pkg : com.apple.pkg.Brother_ColorLaser : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon003.pkg : com.apple.pkg.EPSON_DriverCommon003 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet1.pkg : com.apple.pkg.HP_Inkjet1 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon012.pkg : com.apple.pkg.EPSON_DriverCommon012 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08JP001.pkg : com.apple.pkg.EPSON_IJP08JP001 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet7.pkg : com.apple.pkg.HP_Inkjet7 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon123.pkg : com.apple.pkg.EPSON_DriverCommon123 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IOKit.pkg : com.apple.pkg.EPSON_IOKit : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries2.pkg : com.apple.pkg.Canon_SharedLibraries2 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_LaserjetZJS.pkg : com.apple.pkg.HP_LaserjetZJS : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetMPSeriesH07xx.pkg : com.apple.pkg.Canon_InkjetMPSeriesH07xx : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW007.pkg : com.apple.pkg.EPSON_IJP09WW007 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_Inkjet08.pkg : com.apple.pkg.Brother_Inkjet08 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries5.pkg : com.apple.pkg.Canon_SharedLibraries5 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon119.pkg : com.apple.pkg.EPSON_DriverCommon119 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_InkjetAIODrivers02.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers02 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon149.pkg : com.apple.pkg.EPSON_DriverCommon149 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon129.pkg : com.apple.pkg.EPSON_DriverCommon129 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon026.pkg : com.apple.pkg.EPSON_DriverCommon026 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08WW007.pkg : com.apple.pkg.EPSON_IJP08WW007 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP07WW004.pkg : com.apple.pkg.EPSON_IJP07WW004 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_PDEs.pkg : com.apple.pkg.Canon_PDEs : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon092.pkg : com.apple.pkg.EPSON_DriverCommon092 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_Common.pkg : com.apple.pkg.Brother_Common : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_MonochromeLaser.pkg : com.apple.pkg.Brother_MonochromeLaser : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_ICAMPSeries07xx.pkg : com.apple.pkg.Canon_ICAMPSeries07xx : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries9.pkg : com.apple.pkg.Canon_SharedLibraries9 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Officejet.pkg : com.apple.pkg.HP_Officejet : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP07WW003.pkg : com.apple.pkg.EPSON_IJP07WW003 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_LaserDrivers.pkg : com.apple.pkg.Lexmark_LaserDrivers : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW004.pkg : com.apple.pkg.EPSON_IJP09WW004 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Chuckwalla.pkg : com.apple.pkg.HP_Chuckwalla : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon011.pkg : com.apple.pkg.EPSON_DriverCommon011 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_Libraries.pkg : com.apple.pkg.EPSON_Libraries : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon087.pkg : com.apple.pkg.EPSON_DriverCommon087 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon122.pkg : com.apple.pkg.EPSON_DriverCommon122 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_DMF.pkg : com.apple.pkg.HP_DMF : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetMPSeriesL07xx.pkg : com.apple.pkg.Canon_InkjetMPSeriesL07xx : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon125.pkg : com.apple.pkg.EPSON_DriverCommon125 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon009.pkg : com.apple.pkg.EPSON_DriverCommon009 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_PhotosmartM.pkg : com.apple.pkg.HP_PhotosmartM : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08WW002.pkg : com.apple.pkg.EPSON_IJP08WW002 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries1.pkg : com.apple.pkg.Canon_SharedLibraries1 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Cmd2HP.pkg : com.apple.pkg.HP_Cmd2HP : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08JP002.pkg : com.apple.pkg.EPSON_IJP08JP002 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08WW003.pkg : com.apple.pkg.EPSON_IJP08WW003 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Samsung_Common.pkg : com.apple.pkg.Samsung_Common : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon059.pkg : com.apple.pkg.EPSON_DriverCommon059 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries10.pkg : com.apple.pkg.Canon_SharedLibraries10 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon047.pkg : com.apple.pkg.EPSON_DriverCommon047 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_PDE.pkg : com.apple.pkg.HP_PDE : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon027.pkg : com.apple.pkg.EPSON_DriverCommon027 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon004.pkg : com.apple.pkg.EPSON_DriverCommon004 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon054.pkg : com.apple.pkg.EPSON_DriverCommon054 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_InkjetAIODrivers01.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers01 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08WW006.pkg : com.apple.pkg.EPSON_IJP08WW006 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon150.pkg : com.apple.pkg.EPSON_DriverCommon150 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_Inkjet.pkg : com.apple.pkg.Brother_Inkjet : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW008.pkg : com.apple.pkg.EPSON_IJP09WW008 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_Utility.pkg : com.apple.pkg.Brother_Utility : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetiPSeriesM0407.pkg : com.apple.pkg.Canon_InkjetiPSeriesM0407 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon069.pkg : com.apple.pkg.EPSON_DriverCommon069 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Fax.pkg : com.apple.pkg.HP_Fax : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon095.pkg : com.apple.pkg.EPSON_DriverCommon095 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetMPSeries0406.pkg : com.apple.pkg.Canon_InkjetMPSeries0406 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon030.pkg : com.apple.pkg.EPSON_DriverCommon030 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_CommandFileFilter.pkg : com.apple.pkg.Lexmark_CommandFileFilter : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_ICA.pkg : com.apple.pkg.EPSON_ICA : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Brother_ICA.pkg : com.apple.pkg.Brother_ICA : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_CHorseD.pkg : com.apple.pkg.HP_CHorseD : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08JP005.pkg : com.apple.pkg.EPSON_IJP08JP005 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries6.pkg : com.apple.pkg.Canon_SharedLibraries6 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Crossbow.pkg : com.apple.pkg.HP_Crossbow : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW005.pkg : com.apple.pkg.EPSON_IJP09WW005 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet8.pkg : com.apple.pkg.HP_Inkjet8 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Photosmart.pkg : com.apple.pkg.HP_Photosmart : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_ICADrivers.pkg : com.apple.pkg.Lexmark_ICADrivers : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP07JP004.pkg : com.apple.pkg.EPSON_IJP07JP004 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_USBComm.pkg : com.apple.pkg.Lexmark_USBComm : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon010.pkg : com.apple.pkg.EPSON_DriverCommon010 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries4.pkg : com.apple.pkg.Canon_SharedLibraries4 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet6.pkg : com.apple.pkg.HP_Inkjet6 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_CUPS.pkg : com.apple.pkg.Lexmark_CUPS : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon083.pkg : com.apple.pkg.EPSON_DriverCommon083 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_SmartX.pkg : com.apple.pkg.HP_SmartX : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP07WW002.pkg : com.apple.pkg.EPSON_IJP07WW002 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon127.pkg : com.apple.pkg.EPSON_DriverCommon127 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08WW005.pkg : com.apple.pkg.EPSON_IJP08WW005 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetProSeries.pkg : com.apple.pkg.Canon_InkjetProSeries : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon028.pkg : com.apple.pkg.EPSON_DriverCommon028 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon066.pkg : com.apple.pkg.EPSON_DriverCommon066 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon046.pkg : com.apple.pkg.EPSON_DriverCommon046 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Interlaken.pkg : com.apple.pkg.HP_Interlaken : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_CHorseL.pkg : com.apple.pkg.HP_CHorseL : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon015.pkg : com.apple.pkg.EPSON_DriverCommon015 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon161.pkg : com.apple.pkg.EPSON_DriverCommon161 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon124.pkg : com.apple.pkg.EPSON_DriverCommon124 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08JP003.pkg : com.apple.pkg.EPSON_IJP08JP003 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon070.pkg : com.apple.pkg.EPSON_DriverCommon070 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon121.pkg : com.apple.pkg.EPSON_DriverCommon121 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_Frameworks.pkg : com.apple.pkg.Canon_Frameworks : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon063.pkg : com.apple.pkg.EPSON_DriverCommon063 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries7.pkg : com.apple.pkg.Canon_SharedLibraries7 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon048.pkg : com.apple.pkg.EPSON_DriverCommon048 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_CHorseI.pkg : com.apple.pkg.HP_CHorseI : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetiPSeries07xx.pkg : com.apple.pkg.Canon_InkjetiPSeries07xx : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon120.pkg : com.apple.pkg.EPSON_DriverCommon120 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Lexmark_InkjetAIODrivers07.pkg : com.apple.pkg.Lexmark_InkjetAIODrivers07 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Pdf2Pdf.pkg : com.apple.pkg.HP_Pdf2Pdf : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW002.pkg : com.apple.pkg.EPSON_IJP09WW002 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon052.pkg : com.apple.pkg.EPSON_DriverCommon052 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_ICASingle.pkg : com.apple.pkg.Canon_ICASingle : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08JP004.pkg : com.apple.pkg.EPSON_IJP08JP004 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_PS.pkg : com.apple.pkg.HP_PS : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_CHorseIL.pkg : com.apple.pkg.HP_CHorseIL : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Apple_Gutenprint.pkg : com.apple.pkg.Apple_Gutenprint : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_DesignjetIO.pkg : com.apple.pkg.HP_DesignjetIO : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP08WW004.pkg : com.apple.pkg.EPSON_IJP08WW004 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Deskjet.pkg : com.apple.pkg.HP_Deskjet : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon130.pkg : com.apple.pkg.EPSON_DriverCommon130 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet3.pkg : com.apple.pkg.HP_Inkjet3 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_ICASingle.pkg : com.apple.pkg.EPSON_ICASingle : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_ResourceManager.pkg : com.apple.pkg.HP_ResourceManager : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW006.pkg : com.apple.pkg.EPSON_IJP09WW006 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon006.pkg : com.apple.pkg.EPSON_DriverCommon006 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon094.pkg : com.apple.pkg.EPSON_DriverCommon094 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon029.pkg : com.apple.pkg.EPSON_DriverCommon029 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet4.pkg : com.apple.pkg.HP_Inkjet4 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_CHorse.pkg : com.apple.pkg.HP_CHorse : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Inkjet.pkg : com.apple.pkg.HP_Inkjet : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon148.pkg : com.apple.pkg.EPSON_DriverCommon148 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries3.pkg : com.apple.pkg.Canon_SharedLibraries3 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon001.pkg : com.apple.pkg.EPSON_DriverCommon001 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon126.pkg : com.apple.pkg.EPSON_DriverCommon126 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_SharedLibraries8.pkg : com.apple.pkg.Canon_SharedLibraries8 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon071.pkg : com.apple.pkg.EPSON_DriverCommon071 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP09WW001.pkg : com.apple.pkg.EPSON_IJP09WW001 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Canon_InkjetiPiXSeries0407.pkg : com.apple.pkg.Canon_InkjetiPiXSeries0407 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon084.pkg : com.apple.pkg.EPSON_DriverCommon084 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     HP_Scan.pkg : com.apple.pkg.HP_Scan : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_DriverCommon091.pkg : com.apple.pkg.EPSON_DriverCommon091 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:                     EPSON_IJP07WW001.pkg : com.apple.pkg.EPSON_IJP07WW001 : 2.2.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Additional Fonts"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     AdditionalFonts.pkg : com.apple.pkg.AdditionalFonts : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Language Translations"
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Japanese"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Japanese.pkg : com.apple.MacOSX.lang.ja : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "German"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     German.pkg : com.apple.MacOSX.lang.de : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "French"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     French.pkg : com.apple.MacOSX.lang.fr : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Spanish"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Spanish.pkg : com.apple.MacOSX.lang.es : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Italian"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Italian.pkg : com.apple.MacOSX.lang.it : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Dutch"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Dutch.pkg : com.apple.MacOSX.lang.nl : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Danish"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Danish.pkg : com.apple.MacOSX.lang.da : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Finnish"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Finnish.pkg : com.apple.MacOSX.lang.fi : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Korean"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Korean.pkg : com.apple.MacOSX.lang.ko : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Norwegian"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Norwegian.pkg : com.apple.MacOSX.lang.no : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Russian"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Russian.pkg : com.apple.MacOSX.lang.ru : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Swedish"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     Swedish.pkg : com.apple.MacOSX.lang.sv : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Brazilian Portuguese"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     BrazilianPortuguese.pkg : com.apple.MacOSX.lang.pt : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Simplified Chinese"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     SimplifiedChinese.pkg : com.apple.MacOSX.lang.zh_CN : 10.6.0.1.1.1249367152
    Nov 26 16:49:56 localhost OSInstaller[139]:           Install: "Traditional Chinese"
    Nov 26 16:49:56 localhost OSInstaller[139]:                     TraditionalChinese.pkg :

    no touch,
    to boot from your original grey Mac OS X Install DVD, you’ll need to hold down the C key as you start up your MacBook Pro.
    Which model MacBook Pro do you have, and which version of Mac OS is noted as being on your grey installation DVD? (It can be found on the lower left of your Mac OS X Install DVD.)

  • Having problems installing Windows 7 on my Macbook Pro w/Boot Camp

    Having a problem installing Windows 7 Home Premium (64-Bit) on my Macbook Pro (mid-2010) 13". I use the Boot Camp Assistant, download the necessary drivers and burn them to a disc. I insert my legit Windows 7 install disc, and the process begins but once I get to 'Completing installation', my mac freezes and I have to restart it and delete the partition. This has happened twice. I have contacted Apple and Microsoft and neither of them said that they could help me with the problem so if someone has had a similar issue and found a solution to it, I would really appreciate the help.

    Hi S,
    You may want to post in the Boot Camp forum where more of those experts hang out:  https://discussions.apple.com/community/windows_software/boot_camp

  • Unable to Install Office 2013 Pro and I get returned message "Couldn't Install We're sorry, we had a problem installing your office programs"

    I purchased 40 licenses of Office 2013 Pro from a vendor in the US and received 40 product keys along with the URL to download the software - 1 for each pc activation codes.  I have done a few and were all successful.  I am now trying
    install on 2 other pcs and I am having real difficulty and getting error message each time I try to install.  I am able to download the installer and copied to my desktop and when I double click to execute it, it gives me the option to run on the next
    screen.  I click on run then it gives me the message " do you want to allow the program to make changes to this computer".  When I press YES, nothing happens and minutes later, I get the flwg message everytime, "Couldn't
    install"  "We're sorry, we had a problem installing your office programs.  Is your internet connection working?  Do you have enough free space on your main hard drive?  Please try installing again after you've checked the above. 
    Go online for additional help.
    I have lots of space and my pc is Win 7 64 bit new machine.  I have connection to internet and I was able to get the others done.  What is the problem here and I have been trying to work late night hours to try to install the program and I am unable
    to successfully get it to work.  I receive the same message every time and I followed all the recommended troubleshoot steps I found on the internet.  Someone please help.  I have to install all for all the PCs we have for our organization. 
    Please respond because I am really stuck.
    Gabe

    Hi Gabe,
    First, please check the suggestion above is helpful. I also suggest you removing all version of Office and re-install Office 2013.
    We can try to run the application as an administrator and check if it works.
     1. Right click the shortcut of the application or the main application.
     2. Select properties.
     3. Select compatibility tab and select "Run this program as an administrator."
    If there is anything I can do for you about this issue, don't hesitate to tell me.
    Best regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Problems installing and starting on Windows 7 64bit. error message - The file "i Tunes Library.itl" cannot be read because it was created by a newer version of iTunes.

    Hi I'm having problems installing and starting itunes program on Windows 7 64bit. After install the following error message is flagged - The file "i Tunes Library.itl" cannot be read because it was created by a newer version of iTunes. Would really appreciate any pointers!

    Never mind sorted it out lol. Somebody did a system restore of a week or so. I had done the update during that time and it was lost. Just redownloaded itunes from the internet and its working fine now.

  • Problems installing Windows 7 from a USB stick

    I have got a brand new W510 that i am doing a clean install of Windows 7.
    However i have faced major problems with installing from a USB stick attached to the W510.
    Please notice that there isn't any problem installing Windows 7 to my other PC from this USB stick, this problem is only present with W510.
    I have the BIOS from Lenovo v 1.35, Bios settting are reset to default to isolate any faulty settings.
    In the readme file the say they have fixed some USB detection problems by Windows. bug still present??
    Version 1.35 (BIOS ID: 6LET74WW) [for BIOS ID 6Lxxxxxx-based computer]
     [Problem fixes]
    - Fix an issue that a USB device is not recognized by Windows connecting
    to USB 3.0 port.
    Below is picture of the problem.
    First i choose to boot from my USB Stick Sandisk Cruzer which Windows 7 files are placed, i know these files and the USB stick works with my other computer.
    Picture 1
    Next step when it boots
    Picture 2
    I press Install Now
    Picture 3
    This warning message comes up, can't find driver device
    Picture 4
    I click browse and try to find my USB stick, none of my USB sticks are listed, is this a Lenovo BIOS bug or Windows 7 Installation detection problem??
    Picture 5

    I think you need to fix your links, you seem to have maybe copied the post from another board / forum, the link style you have inserted doesn't work here.
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

Maybe you are looking for

  • View in Bex data from Z-table (field1 = 255 char...)

    Hello Guru...   Could you help to solve problem - I have a Z-table (field has more than 60 characters) 255. How can I obtain this information in Bex?

  • ZR2440w letterboxe​s 640x400, any way around this?

    I noticed my 1920x1200 -native (16:10) ZR2440w vertically centers 640x400 (also 16:10) in an actual output resolution of 640x480 (4:3) when trying to display this resolution. Is it indeed the monitor doing this, is this resolution at all supported an

  • Why doesn't the update part of the App Store work?

    Why doesn't the update part of the App Store work? It says I have an update and the screen is white. I've already restarted the phone. Every other part of the App Store works. I have the iPhone 4. Upgraded a week ago to iOS6 and it was working fine u

  • Can I change the aspect ratio of existing projects?

    Over the past few years, I created a number of iDVD projects of special occasions. I guess the default aspect ration in the older versions of iDVD was 4:3. I now have a widescreen TV and would like to view these videos in 16:9 mode. The TV can change

  • Automate Portal Import

    I am looking for a way to automate the process of Importing transport packages from my development to stage and then to production portal.  Does anyone have any documentation on how this can be automated?  Can this be done with a simple unix command