backup compression

I saw SecondaryConfig.setAllowPopulate and imagine that it could be used for the backup compression.

If I only back up the primary dbs and rebuild the secondary dbs during execution of recovery, I put a lot of drive backup and bandwidth time/strip space.

Above and how can the true I achieve that?

Published by: user8997135 on June 4, 2013 08:38

Hello

Which allows to SecondaryConfig.setAllowPopulate () is a secondary database be filled if it is empty. This is useful when you create a secondary database at a later date than the primary database and need the secondary image to be up-to-date with the primary and contain all secondary keys it would have contained if created at the same time with the primary.

There is no relationship between this method and the backups. Backups EI are subsequently copying all the log files (the file *.jdb in the Directory environment I or subdirectories) to the backup location. Performing backups EI is explained here:
http://docs.Oracle.com/CD/E17277_02/HTML/GettingStartedGuide/backup.html
http://docs.Oracle.com/CD/E17277_02/HTML/TransactionGettingStarted/backup.html
Recovery involves the opening environment I normal title that will automatically run the normal recovery of I. This is explained here:
http://docs.Oracle.com/CD/E17277_02/HTML/GettingStartedGuide/catastrophicrecovery.html
http://docs.Oracle.com/CD/E17277_02/HTML/TransactionGettingStarted/jecatastrophicrecovery.html

When you save, you save the files of newspapers I which contain all of the databases. You can't choose to selectively only certain log files or some parts of log files that contain nodes reflecting data from the primary database. In addition, you can't control the recovery process when opening an environment to make it only to recover some databases.

You must use a different approach outside the process of backup/restore regular EI. You can use DbDump and DbLoad either separately as utilities or programmatically from code to empty only primary databases to the location of the backup (the backup environment), then load them there. When you perform a restore, you open the environment backup (which runs the normal recovery) and the secondary databases for automatic filling of opening / creation.

Or maybe a lot easier, keep the usual backup process for an environment of I (by a backup off hot or connection, where a full backup) and after copying all the log files of *.jdb of the direct environment on the backup environment, open the backup environment, use Environment.truncateDatabase () to empty the database side, followed by a call to Environment.checkpoint () and Environment.cleanLog) only the backup nearby environment. This way, you will have a backup environment that bears the names of secondary database with these secondary databases are empty. They can be created during recovery, after the opening of the environment, when you open the secondary database configured with SecondaryConfig.setAllowPopulate (true).
Note that this approach is not feasible if you implement incremental backups, because the new log files that you copy in the backup environment will contain entries referring to the secondaries.

Kind regards
Andrei

Tags: Database

Similar Questions

  • RMAN backup Compression algorithms?

    Hi Experts,

    Please help me, I'm a little confused here.

    1. which algorithm of Compression in RMAN needs license of Advanced Compression in the list below?

    • BASIC
    • LOW
    • MEDIUM
    • HIGH

    2. I'm under the impression that you don't need Advanced Compression license if you use BASIC ALGORITHM of COMPRESSION, but I could be wrong please advise.

    Kind regards

    ZKM

    Basic compression is not license required...

    http://docs.Oracle.com/database/121/BRADV/rcmconfa.htm#CHDEHCEB

    Supported Compression levels

    Oracle database provides two types of compression algorithms: a default compression algorithm and a group of algorithms of compression available with Oracle Advanced Compression option. The default algorithm is a standard Oracle database feature, while Oracle Advanced Compression option is sold separately.

    Default compression

    You can configure the default compression algorithm, which does not require Oracle Advanced Compression option.

  • Import a backup compressed in Oracle 10 g

    Hello world

    I need to restore an image from a file compressed with .exp as extension on the Windows operating system.
    After searching the Web, there was more import samples on UNIX than Windows.
    Has anyone restored a dump of a file (.exp) compressed Windows OS? Help, please.

    Oracle Version: 10.1.0.4.0
    Name of the OS & Version: Windows 2003


    Thank you

    Kind regards

    Sunny.

    Why do you think (or know) that the .exp is a compressed file? The default extension for dumping of export is .dmp. If the file has the extension .exp, then that would mean that the script file or the parameter used to create the export dump explicitly set this extension. If it has been compressed from a dmp file or is a normal (uncompressed) file that has the extension .exp is something you should ask the provider of the file.

    OR just run against the file import and Oracle will be in error if it is compressed. If it is compressed, see if you can decompress with WinZip (Unzip)?

    Hemant K Collette

  • V/s compressed normal backup backup set.

    Hi all

    Can I get data in real time for a backup compressed in savings (tape drive) teams.
    We plan to implement this feature for dbs customers. (DB 10.2.0.4.0 on AIX/Linux)

    Thank you

    I can't answer your question but I would like to stress that many band systems include integrated hardware compression based so according to your hardware tape data being written to tape may already be compressed in which case there will be no reduction in the requirements for the ribbons after application Oracle rman backup compression feature.

    Where the band units do not compress the data being written to tape then I expect a reduction in the use of the band and the improvement of the efficiency equal to the reduction in the size of the file. If you have a 30% reduction in file size so the compressed backup set is only 70% of the game so I expect a 30% reduction in time to copy the files on a tape and a reduction of 30% of the needs of the band to copy the uncompressed backup tape backup.

    HTH - Mark D Powell.

  • Performance on the backups RMAN and LOBs

    Hi all

    We have 4 data nodes (11.2.0.3) running on a RHEL. The db has 2.5TBs, and we realized that the backup incremental level 1 takes too long to complete. Doing some research, we found a few posts saying that, during a backup of a segment, if this same segment has a large number of business segments (and that's our case... a large number of business segments) and backup compression (we use COMPRESSION to CONFIGURE ALGORITHM 'HIGH' OPTIMIZE for LOAD REAL EN BROADCAST 'DEFAULT') this backup even can take much longer than an uncompressed backup. What I would like to know, is if you have had an equal experience and if you change the algorithm of compression to zero, the backup will run faster.

    PS - the entry and exit of the backup is disk.

    Thanks in advance.

    Hello;

    Yes is the simple answer.

    SELECT
      ALGORITHM_NAME,
      ALGORITHM_DESCRIPTION,
      IS_DEFAULT
    FROM
      V$RMAN_COMPRESSION_ALGORITHM;
    

    Compression can take a long time depending on the stored data. Try to compress a file zip for example, it is generally slower on the second pass.

    Best regards

    mseberg

  • RMAN SCRIPT TO CLEAR THE BACKUP ITEMS MORE THAN 2 DAYS...

    Hello

    I take a full backup of the DB using RMAN script. The script is as below:

    grc_backup
    {allocate channel ch1 type disc format ' / home/oragrc/GRCbkup/rman_bkp/data/%T_%c_%s_%f';}
    backup database;
    SQL ' ALTER SYSTEM
    ARCHIVE LOG CURRENT ';
    change archivelog than any overlap;
    ARCHIVELOG backup all the format ' / home/oragrc/GRCbkup/rman_bkp/Archive/%T_al_%U.bck';
    current backup controlfile as ' / home/oragrc/GRCbkup/rman_bkp/%T_cf_%U.bck';
    }


    This script is supposed to run on a daily basis via an OS script.

    The problem is on a daily basis after the backup that I have to delete the backups more than 2 days. For this I use an OS script that finds the backups more than 2 days to find the command and deletes it. This script also removes the archivelogs over 2 days.

    I just know that it is not advisable to delete RMAN backups and archived logs OS command when using RMAN.

    I figured out the following script, I have changed the script and instance names are different please find below

    CONFIGURE REDUNDANCY 2 RETENTION STRATEGY;
    Configure type disk parallelism 1 backup compressed backupset device type;

    run
    {
    allocate channel d1 type disk;
    backup filesperset 5 ' format / u06/backup/EBSDEV/EBSDEV_data_t%t_s%s_p%p' database;
    SQL 'alter system archive log current';
    format of backup filesperset 20 ' / u06/backup/EBSDV3/EBSDV3_arch_t%t_s%s_p%p' all entered archivelog delete;
    backup format ' / u06/backup/EBSDEV/EBSDEV_control%U' current controlfile;
    backup spfile format ' / u06/backup/EBSDEV/EBSDEV_spfile_%U';
    SQL 'alter controlfile backup trace database as "/tmp/control.trc" re-use";

    OVERLAP BACKUPSET;
    DELETE NOPROMPT OBSOLETE;
    DELETE THE EXPIRED NOPROMPT BACKUP;
    }
    list summary backupset;
    "exit";

    Can someone suggest me this AM I correct...

    Yes.

    Note: The OVERLAP should be OVERLAPPING BACKUP.

    Hemant K Collette

  • Oracle RMAN compressed backupset on TSM disk pool

    Hello

    We have an Oracle 11.2.0.3 database, size * 2.2Tb* on AIX 6.1.

    There are a bunch of disks in TSM 6.3, size * 4 Tb *.
    When you try to take a Tablet backupset on this pool with the command:
    run {
    allocate channel ch01 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch02 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch03 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch04 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch05 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch06 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch07 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch08 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch09 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch10 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch11 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch12 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch13 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch14 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch15 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    allocate channel ch16 device type SBT parms 'ENVTDPPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    
    BACKUP AS COMPRESSED BACKUPSET FULL DATABASE;
    
    release channel ch01;
    release channel ch02;
    release channel ch03;
    release channel ch04;
    release channel ch05;
    release channel ch06;
    release channel ch07;
    release channel ch08;
    release channel ch09;
    release channel ch10;
    release channel ch11;
    release channel ch12;
    release channel ch13;
    release channel ch14;
    release channel ch15;
    release channel ch16;
    }
    backup fails with the error:
    RMAN-03009: failure of backup command on ch16 channel at 11/28/2012 12:22:17
    ORA-19502: write error on file "CS_20121128_qlnrehrm_1_1.DBF", block number 257 (block size=8192)
    ORA-27030: skgfwrt: sbtwrite2 returned error
    ORA-19511: Error received from media manager layer, error text:
       ANS1311E (RC11)   Server out of data storage space
    channel ch16 disabled, job failed on it will be run on another channel
    Attempts to run above the command also failed on cluster disks in TSM with size * 5 TB *, * 7 TB *. But this size is 2 - 3 times bigger than the original DB Dimensions (2.2 to).
    The last attempt to run our command successful on TSM disk pool of * 15 TB *!. During its execution, we could monitor the use of the disk pool of * ~ 7 TB *. Once the backup is complete, the disk pool released and only * ~ 100 GB * compressed backupset remained.

    -----
    So the question is: is this a problem or an RMAN or TSM normal?

    We will be very greatfull for your kind answers!


    Kind regards
    Iago

    Hello;

    Not sure how the algorithm works or how the channels have an effect on the compression. Would assume its done in memory or speed would suffer.

    It shows all and testing them to get an idea of what to expect:

    RMAN backup compression

    http://gavinsoorma.com/2009/12/11g-release-2-RMAN-backup-compression/

    And so for this:

    http://taliphakanozturken.WordPress.com/2012/04/07/comparing-of-RMAN-backup-compression-levels/

    And finally:

    http://www.dbspecialists.com/blog/database-backups/RMAN-compression-algorithms-in-11gr2/

    Best regards

    mseberg

    Published by: mseberg on December 7, 2012 03:52

  • FULL backup and LEVEL 0

    Hello
    on the 11g on Win 2008 R2.
    I backup in NOCATALOG.
    When I run the backup from the command list I have:
     
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time 
    ------- ---- -- ---------- ----------- ------------ --------------- 
    6       Incr 0  3.73G ;     DISK        00:09:50     23/04/12 
            BP Key: 6   Status: AVAILABLE  Compressed: YES  Tag: TAG20120423T134319 
    
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time 
    ------- ---- -- ---------- ----------- ------------ --------------- 
    3       Full    1.05M ;     DISK        00:00:01     23/04/12 
            BP Key: 3   Status: AVAILABLE  Compressed: YES  Tag: TAG20120423T132033 
    So, what is the difference between Type = FULL and Type = 0 Incr?

    Thank you.
    Context:
    I ran first full backup:
    compressed backup backupset format '% WORK_DIR%\%DB%\rman\full/df_%%d_%%T_%%s_%%p' database;

    And then ran incremental:

    compressed backup backupset format '% WORK_DIR%\%DB%\rman\incr/df_%%d_%%T_%%s_%%p' INCREMENTAL level 1 data base;

    And for the second he showed me:
    no backup or copy of the data file nn parent was found.

    A level 0 incremental backup is identical to the contents of a full backup, but unlike a full backup, the level 0 backup is considered a part of the incremental backup strategy.

    A level 1 incremental backup can be one of the following types:

    A differential incremental backup, which backs up all blocks changed after the last incremental backup at level 1 or 0

    A cumulative incremental backup, which backs up all blocks changed after the last incremental backup at level 0

    Incremental backups are differential by default.

  • journal compression archive Oracle

    Dear all,

    Please help me how do I Compress log archiving of oracle 10 g.

    Thank you
    Manas

    There is nothing to test. The order is for the not , such that it can create more problems than good. If this isn't a good idea to propose other solutions, backups compressed backupset or o/s compression level can help.

    Aman...

  • We can schedule with rman backup in the windows platform?

    My question is about the backup settings of my

    the idea is to all on the windows platform

    a weekly full backup (compressed backupset level 0)
    daily incremental backup of (cumulative) (even, level 1)
    an incremental backup every hour (bonus) (level 1)



    could you please tell me if the following examples will be adapted to my needs
    Thanks to you all

    I think you would need to do a .cmd file plan and then using the Windows Task Scheduler. I suggest you do a cmd simple backup file, try to plan and see how it goes.

    HTH
    Aman...

  • Re-installed XP Pro. Now can not access data dynamic disk on the HD 2

    Hey all. Good here we will...

    My system has TWO SATA drives. A year ago I converted both Dyamic discs thinking I could use them in a RAID, but decided to do it. So, since that time I am using OS + critical data Disk1 and Disk2 as a backup (compressed image of Disk1).

    My question is now, I have re-installed XP Pro on disk 1 and my computer does not allow me to see the data in Disk2. XP Pro detects disc 2 as "base" and asks me to format it. However, my BART PE bootdisk shows 2 disk as dynamic and he can't read.

    This is where I am. I'm trying to understand how to read data from disk 2. Whether some use of software 3rd party or a way to get XP Pro to see the data.

    Check the knowledge base on best practices with dynamic disks.
    http://support.Microsoft.com/search/?adv=1
    For example.
    http://support.Microsoft.com/kb/329707

    "Dynamic disks use a private disk region to maintain a logical disk manager (LDM) database, which contains the types of volumes, offsets, memberships and the drive letters of each volume. The LDM database is also replicated, so that each dynamic disk knows about every other dynamic disk configuration. This feature makes dynamic disks more reliable and recoverable than basic disks. »

    You suggest that your second drive can still have a copy of his information LDM. In other words, as long as you did not "commit a sin" as defined in this article.

    See 'import records' here and see if 'Foreign' is displayed for the drive in disk management.
    Disk management is where you want to look for info on the disc.
    http://TechNet.Microsoft.com/en-us/library/bb457110.aspx#EEAA

    Another response of the community of Windows XP newsgroups

  • Lightroom could not save the catalog

    I get the following error when trying to save my catalog:

    Lightroom could not save the name of the catalog 'Catalogue Lightroom'.

    I use Lightroom CC 2015.5

    I have over 300 GB of free space on my drive.  I have more than 3 GB of photos.

    Backup follows these steps before the failure:

    Integrity checking,

    Copy of catalog

    Catalog optimization

    The Catalog backup compression


    Any ideas on what to do next?

    I had a chat with Adobe session live support.  She has tried everything that you guys recommended then asked me to delete a bunch of files on my C drive because it was pretty full.  She said that this drive should be at least 2 x the size of the free catalog.  Once I cleaned stuff backup succeeded.  Thank you all.

  • Treatment of precompression block

    Can someone explain to me what is meant by transformation of block precompression? I went through the oracle documentation and not really well understood. If anyone can help me.

    The docs say:

    Best backup compression ratios are achieved by the consolidation of free space in each block of data and free space of binary zeros. This treatment precompression step has the most benefit for the blocks of data that have been the subject of many deletions and insert operations.

    It's basically that RMAN can do for you to make your smaller backups. It takes additional CPU, so that backups can be slower.

  • RMAN incremental long

    My backups rman production take so long?

    RMAN >
    RMAN > RUN {
    2 > DATABASE INCREMENTAL LEVEL 0 BACKUP;
    3 > crosscheck backup;
    4 > overlap backupset;
    5 > delete noprompt obsolete;
    {6 >}
    7 > EXIT;
    From backup 4 October 12
    using the control file of the target instead of recovery catalog database
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID = 508 type device = DISK
    channel ORA_DISK_1: from incremental level 0 datafile backup set
    channel ORA_DISK_1: specifying datafile (s) in the backup set
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/users02.dbf 00021
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/users03.dbf 00022
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/users05.dbf 00030
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/users07.dbf 00033
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/users08.dbf 00034
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/users01.dbf 00004
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/users04.dbf 00029
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/users06.dbf 00032
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/system02.dbf 00020
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/sysaux01.dbf 00002
    Enter a number of file datafile = 00005 name=/u02/app/oracle/oradata/orcl/DEV_DATA01.dbf
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/undotbs01.dbf 00003
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/users10.dbf 00037
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/mmi_prod04.dbf 00031
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/DEV_DATA02.dbf 00016
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/DEV_DATA03.dbf 00017
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/DEV_DATA04.dbf 00018
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/DEV_DATA05.dbf 00019
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/mmi_prod02.dbf 00027
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/mmi_prod03.dbf 00028
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/mmi_prod01.dbf 00026
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/all_idx01.dbf 00024
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/all_idx02.dbf 00025
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/users09.dbf 00035
    Enter a number of file datafile = 00001 name=/u02/app/oracle/oradata/orcl/system01.dbf
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/DEV_INDX01.dbf 00006
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/DEV_INDX02.dbf 00023
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/PATH_TBL01.dbf 00011
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/all_idx03.dbf 00036
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/DEV_TEMP01.dbf 00007
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/KYA_IDX01.dbf 00008
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/LOB_IMAGE01.dbf 00009
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/PATH_IDX01.dbf 00010
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/RIS_DATA01.dbf 00012
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/RIS_INDX01.dbf 00013
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/TS_FREE01.dbf 00014
    Enter a number of file datafile = name=/u02/app/oracle/oradata/orcl/TS_RV11201.dbf 00015
    channel ORA_DISK_1: starting total, 1 to October 4, 12
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03009: failure of the backup command on the channel ORA_DISK_1 at 04/10/2012 03:59:09
    ORA-19502: error on the file "/ media/disk-1/ora_df795751210_s780_s1" writing, block number 13957633 (block size = 8192)
    ORA-27072: IO file error
    Linux-x86_64 error: 2: no such file or directory
    Additional information: 4
    Additional information: 13957633
    Additional information: 778240

    Complete recovery manager.


    elapsed time: 03:59:09 > > (for the differential level 0)
    and time: 01:42:51 > > (for level 1)

    What can I possibly do to decrease the time
    I checked the block change tracking is not enabled

    Good suggestion will be highly appreciated


    How can use channel assignment & if I take incremental backups compressed will it take more time at the moment

    Published by: Fayn_dba on October 5, 2012 03:50

    Fayn_dba wrote:
    My backups rman production take so long?

    but his failure! "Linux-x86_64 error: 2: no such file or directory".
    >

    elapsed time: 03:59:09 > (for extra strength 0)
    and time: 01:42:51 > (for level 1)

    What can I possibly do to decrease the time
    I checked the block change tracking is not enabled

    You can activate the block change tracking but there also additional generals.
    >

    >

    & How do I use the assignment of channels &

    http://docs.Oracle.com/CD/B28359_01/backup.111/b28273/rcmsynta004.htm

    If I take incremental backups compressed will take more time now

    Yes, and it consumes more CPU since it must compress the backup.
    >

  • Error updating Air

    Hello

    Can't update Adobe Air.  Cannot uninstall old version.  I am the administrator.  Win 7 Home Premium 64 - bit SP1.

    Help, please.

    Joe

    Install log

    [2012-06 - 13:14:22:02] Setup starts with version 3.3.0.3650 on Windows Vista x 86

    [2012-06 - 13:14:22:02] command line is:

    [2012-06 - 13:14:22:02] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:22:09] raise with altitude

    [2012-06 - 13:14:22:09] launching subprocesses with command-line air installer.exe c:\users\j\appdata\local\temp\aira237.tmp\adobe - ei

    [2012-06 - 13:14:22:11] Setup starts with version 3.3.0.3650 on Windows Vista x 86

    [2012-06 - 13:14:22:11] Commandline is: stdio - \\.\pipe\AIR_2580_0 - ei

    [2012-06 - 13:14:22:11] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:22:11] from silent runtime update. Update from version 3.2.0.2070 to version 3.3.0.3650 runtime

    [2012-06 - 13:14:22:11] installation msi at c:\users\j\appdata\local\temp\aira237.tmp\setup.msi with a guid {65CB4C08-C47B-4A7E-A6A4-50C06ADA5FC6}

    [2012-06 - 13:14:22:20] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-06 - 13:14:22:20] restore to install a c:\users\j\appdata\local\temp\aira237.tmp\setup.msi

    [2012-06 - 13:14:22:20] full restore

    [2012-06 - 13:14:22:20] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-06 - 13:14:22:20] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-06 - 13:14:22:20] end of Setup with exit code 7

    [2012-06 - 13:14:22:23] end of Setup with exit code 7

    [2012-06 - 13:14:22:30] Setup starts with version 3.3.0.3650 on Windows Vista x 86

    [2012-06 - 13:14:22:30] command line is:

    [2012-06 - 13:14:22:30] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:22:33] Setup starts with version 3.3.0.3650 on Windows Vista x 86

    [2012-06 - 13:14:22:33] command line is:

    [2012-06 - 13:14:22:33] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:22:34] Setup starts with version 3.3.0.3650 on Windows Vista x 86

    [2012-06 - 13:14:22:34] command line is:

    [2012-06 - 13:14:22:34] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:22:36] raise with altitude

    [2012-06 - 13:14:22:36] launching subprocesses with command-line air installer.exe c:\users\j\appdata\local\temp\aira0e.tmp\adobe - ei

    [2012-06 - 13:14:22:38] Setup starts with version 3.3.0.3650 on Windows Vista x 86

    [2012-06 - 13:14:22:38] Commandline is: stdio - \\.\pipe\AIR_2740_0 - ei

    [2012-06 - 13:14:22:38] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:22:38] from silent runtime update. Update from version 3.2.0.2070 to version 3.3.0.3650 runtime

    [2012-06 - 13:14:22:38] installation msi at c:\users\j\appdata\local\temp\aira0e.tmp\setup.msi with a guid {65CB4C08-C47B-4A7E-A6A4-50C06ADA5FC6}

    [2012-06 - 13:14:22:44] cancel elevated installation

    [2012-06 - 13:14:22:45] cancel request transmitted to the msi install operation

    [2012-06 - 13:14:22:46] raise with altitude

    [2012-06 - 13:14:22:46] launching subprocesses with command-line air installer.exe c:\users\j\appdata\local\temp\air1802.tmp\adobe - ei

    [2012-06 - 13:14:22:46] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-06 - 13:14:22:46] restore to install a c:\users\j\appdata\local\temp\aira0e.tmp\setup.msi

    [2012-06 - 13:14:22:46] full restore

    [2012-06 - 13:14:22:46] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-06 - 13:14:22:46] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-06 - 13:14:22:46] end of Setup with exit code 7

    [2012-06 - 13:14:22:47] Setup starts with version 3.3.0.3650 on Windows Vista x 86

    [2012-06 - 13:14:22:47] Commandline is: stdio - \\.\pipe\AIR_4060_0 - ei

    [2012-06 - 13:14:22:47] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:22:47] from silent runtime update. Update from version 3.2.0.2070 to version 3.3.0.3650 runtime

    [2012-06 - 13:14:22:48] installation msi at c:\users\j\appdata\local\temp\air1802.tmp\setup.msi with a guid {65CB4C08-C47B-4A7E-A6A4-50C06ADA5FC6}

    [2012-06 - 13:14:22:51] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-06 - 13:14:22:51] restore to install a c:\users\j\appdata\local\temp\air1802.tmp\setup.msi

    [2012-06 - 13:14:22:51] full restore

    [2012-06 - 13:14:22:51] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-06 - 13:14:22:51] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-06 - 13:14:22:51] end of Setup with exit code 7

    [2012-06 - 13:14:22:51] end of Setup with exit code 7

    [2012-06 - 13:14:22:53] end of Setup with exit code 7

    [2012-06 - 13:14:23:33] end of Setup with exit code 6

    [2012-06 - 13:14:24:20] Setup starts with version 3.3.0.3650 on Windows XP x 86

    [2012-06 - 13:14:24:20] command line is:

    [2012-06 - 13:14:24:20] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:24:24] Setup starts with version 3.3.0.3650 on Windows XP x 86

    [2012-06 - 13:14:24:24] command line is:

    [2012-06 - 13:14:24:24] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:24:25] Setup starts with version 3.3.0.3650 on Windows XP x 86

    [2012-06 - 13:14:24:25] command line is:

    [2012-06 - 13:14:24:25] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:24:26] from the runtime update. Update from version 3.2.0.2070 to version 3.3.0.3650 runtime

    [2012-06 - 13:14:24:26] installation msi at c:\users\j\appdata\local\temp\airb328.tmp\setup.msi with a guid {65CB4C08-C47B-4A7E-A6A4-50C06ADA5FC6}

    [2012-06 - 13:14:24:32] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-06 - 13:14:24:32] restore to install a c:\users\j\appdata\local\temp\airb328.tmp\setup.msi

    [2012-06 - 13:14:24:32] full restore

    [2012-06 - 13:14:24:32] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-06 - 13:14:24:55] end of Setup with exit code 7

    [2012-06 - 13:14:24:56] end of Setup with exit code 6

    [2012-06 - 13:14:24:58] Setup starts with version 3.3.0.3650 on Windows Vista x 86

    [2012-06 - 13:14:24:58] command line is:

    [2012-06 - 13:14:24:58] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:25:00] end of Setup with exit code 6

    [2012-06 - 13:14:25:04] raise with altitude

    [2012-06 - 13:14:25:04] launching subprocesses with command-line air installer.exe c:\users\j\appdata\local\temp\air4f57.tmp\adobe - ei

    [2012-06 - 13:14:25:05] Setup starts with version 3.3.0.3650 on Windows Vista x 86

    [2012-06 - 13:14:25:05] Commandline is: stdio - \\.\pipe\AIR_2988_0 - ei

    [2012-06 - 13:14:25:05] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:25:05] from silent runtime update. Update from version 3.2.0.2070 to version 3.3.0.3650 runtime

    [2012-06 - 13:14:25:06] installation msi at c:\users\j\appdata\local\temp\air4f57.tmp\setup.msi with a guid {65CB4C08-C47B-4A7E-A6A4-50C06ADA5FC6}

    [2012-06 - 13:14:25:08] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-06 - 13:14:25:08] restore to install a c:\users\j\appdata\local\temp\air4f57.tmp\setup.msi

    [2012-06 - 13:14:25:08] full restore

    [2012-06 - 13:14:25:08] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-06 - 13:14:25:08] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-06 - 13:14:25:08] end of Setup with exit code 7

    [2012-06 - 13:14:26:23] end of Setup with exit code 7

    [2012-06 - 13:14:49:38] Setup starts with version 3.3.0.3650 on Windows Vista x 86

    [2012-06 - 13:14:49:38] command line is:

    [2012-06 - 13:14:49:38] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:49:44] raise with altitude

    [2012-06 - 13:14:49:44] launching subprocesses with command-line air installer.exe c:\users\j\appdata\local\temp\airf6bd.tmp\adobe - ei

    [2012-06 - 13:14:49:46] Setup starts with version 3.3.0.3650 on Windows Vista x 86

    [2012-06 - 13:14:49:46] Commandline is: stdio - \\.\pipe\AIR_3736_0 - ei

    [2012-06 - 13:14:49:46] runtime installed (3.2.0.2070) located in c:\Program Files (x 86) \Common Files\Adobe AIR

    [2012-06 - 13:14:49:46] from silent runtime update. Update from version 3.2.0.2070 to version 3.3.0.3650 runtime

    [2012-06 - 13:14:49:46] installation msi at c:\users\j\appdata\local\temp\airf6bd.tmp\setup.msi with a guid {65CB4C08-C47B-4A7E-A6A4-50C06ADA5FC6}

    [2012-06 - 13:14:49:51] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-06 - 13:14:49:51] restore to install a c:\users\j\appdata\local\temp\airf6bd.tmp\setup.msi

    [2012-06 - 13:14:49:51] full restore

    [2012-06 - 13:14:49:51] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-06 - 13:14:49:51] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-06 - 13:14:49:51] end of Setup with exit code 7

    [2012-06 - 13:14:49:54] end of Setup with exit code 7

    MSI logging

    = Recording started: 13/06/2012-15:06:58 Build type: SHIP UNICODE 5.00.7601.00 appeal process: C:\Windows\System32\msiexec.exe =.
    MSI (c) (B0:68) [15:06:58:219]: established police.  Charset: Req = 0, Ret = 0, fonts: Req = MS Shell Dlg, Ret = MS Shell Dlg

    MSI (c) (B0:68) [15:06:58:219]: established police.  Charset: Req = 0, Ret = 0, fonts: Req = MS Shell Dlg, Ret = MS Shell Dlg

    MSI (c) (B0:AC) [15:06:58:219]: Resetting cached policy values
    MSI (c) (B0:AC) [15:06:58:219]: value of strategy Machine 'Debug' is 0
    MSI (c) (B0:AC) [15:06:58:219]: * RunEngine:
    Product: C:\Users\j\Desktop\MicrosoftFixit50381.msi
    Action:
    Command line:
    MSI (c) (B0:AC) [15:06:58:219]: value of strategy Machine 'DisableUserInstalls' is 0
    MSI (c) (B0:AC) [15:06:58:235]: STRATEGY of RESTRICTION SOFTWARE: check the package--> "C:\Users\j\Desktop\MicrosoftFixit50381.msi" against the software restriction policy
    MSI (c) (B0:AC) [15:06:58:235]: STRATEGY of RESTRICTION SOFTWARE: C:\Users\j\Desktop\MicrosoftFixit50381.msi has a digital signature
    MSI (c) (B0:AC) [15:06:58:328]: STRATEGY of RESTRICTION SOFTWARE: C:\Users\j\Desktop\MicrosoftFixit50381.msi is allowed to run at the level of authorization 'unlimited '.
    MSI (c) (B0:AC) [15:06:58:328]: Cloaking enabled.
    MSI (c) (B0:AC) [15:06:58:328]: attempt of activation of all disabled privileges before calling install on server
    MSI (c) (B0:AC) [15:06:58:328]: dialogue of end not activated
    MSI (c) (B0:AC) [15:06:58:328]: original package == > C:\Users\j\Desktop\MicrosoftFixit50381.msi
    MSI (c) (B0:AC) [15:06:58:328]: package we lack of == > C:\Users\j\Desktop\MicrosoftFixit50381.msi
    MSI (c) (B0:AC) [15:06:58:328]: APPCOMPAT: replacements of compatibility mode properties found.
    MSI (c) (B0:AC) [15:06:58:328]: APPCOMPAT: looking for entry with ProductCode '{55D13F49-FCB8-4892-8266-05D373FCAA61}' appcompat database
    MSI (c) (B0:AC) [15:06:58:328]: APPCOMPAT: no matching ProductCode found in the database.
    MSI (c) (B0:AC) [15:06:58:328]: MSCOREE not loaded loading copy from system32
    MSI (c) (B0:AC) [15:06:58:344]: value of strategy Machine 'TransformsSecure' is 0
    MSI (c) (B0:AC) [15:06:58:344]: value 'TransformsAtSource' user policy is 0
    MSI (c) (B0:AC) [15:06:58:344]: Note: 2 1: 2262: file 3:-2147287038
    MSI (c) (B0:AC) [15:06:58:344]: Note: 2 1: 2262: MsiFileHash 3:-2147287038
    MSI (c) (B0:AC) [15:06:58:344]: value of strategy Machine 'DisablePatch' is 0
    MSI (c) (B0:AC) [15:06:58:344]: value of strategy Machine 'AllowLockdownPatch' is 0
    MSI (c) (B0:AC) [15:06:58:344]: value of strategy Machine 'DisableLUAPatching' is 0
    MSI (c) (B0:AC) [15:06:58:344]: value of strategy Machine 'DisableFlyWeightPatching' is 0
    MSI (c) (B0:AC) [15:06:58:344]: activation setting basic caching for this transaction because all active patches are MSI 3.0 style MSP or at least a patch of minor update of MSI 3.0 is active
    MSI (c) (B0:AC) [15:06:58:344]: APPCOMPAT: looking for entry with ProductCode '{55D13F49-FCB8-4892-8266-05D373FCAA61}' appcompat database
    MSI (c) (B0:AC) [15:06:58:344]: APPCOMPAT: no matching ProductCode found in the database.
    MSI (c) (B0:AC) [15:06:58:344]: transformations are not secure.
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding MsiLogFileLocation property. Its value is 'C:\Users\j\AppData\Local\Temp\MSI3e2c0.LOG '.
    MSI (c) (B0:AC) [15:06:58:344]: command line: CURRENTDIRECTORY = C:\Users\j\Desktop CLIENTUILEVEL = 0 CLIENTPROCESSID = 1968
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding PackageCode property. Its value is '{1C7C3009-013E-4A16-9A0F-0000FB80A613} '.
    MSI (c) (B0:AC) [15:06:58:344]: Product Code passed to Engine.Initialize: "
    MSI (c) (B0:AC) [15:06:58:344]: the Product Code of the table of properties before transformations: "{55D13F49-FCB8-4892-8266-05D373FCAA61}".
    MSI (c) (B0:AC) [15:06:58:344]: the Product Code of the table of properties after transformations: "{55D13F49-FCB8-4892-8266-05D373FCAA61}".
    MSI (c) (B0:AC) [15:06:58:344]: unregistered product: first start installation
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding ProductState property. Its value is '-1'. '.
    MSI (c) (B0:AC) [15:06:58:344]: entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (c) (B0:AC) [15:06:58:344]: value 'SearchOrder' user policy is 'nmu '.
    MSI (c) (B0:AC) [15:06:58:344]: adding new sources is allowed.
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding PackagecodeChanging property. Its value is '1 '.
    MSI (c) (B0:AC) [15:06:58:344]: Package name extracted from package path: 'MicrosoftFixit50381.msi '.
    MSI (c) (B0:AC) [15:06:58:344]: package be registered: "MicrosoftFixit50381.msi."
    MSI (c) (B0:AC) [15:06:58:344]: Note: 2 1: 2262: error 3:-2147287038
    MSI (c) (B0:AC) [15:06:58:344]: Note: 2 1: 2262: AdminProperties 3:-2147287038
    MSI (c) (B0:AC) [15:06:58:344]: Machine policy value 'DisableMsi' is 0
    MSI (c) (B0:AC) [15:06:58:344]: value of strategy Machine 'AlwaysInstallElevated' is 0
    MSI (c) (B0:AC) [15:06:58:344]: "AlwaysInstallElevated" user policy value is 0
    MSI (c) (B0:AC) [15:06:58:344]: the product '{55D13F49-FCB8-4892-8266-05D373FCAA61}' is running with user privileges: it is not affected.
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding CURRENTDIRECTORY property. Its value is 'C:\Users\j\Desktop '.
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding CLIENTUILEVEL property. Its value is '0 '.
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding CLIENTPROCESSID property. Its value is '1968'.
    MSI (c) (B0:AC) [15:06:58:344]: TRANSFORMS property is now:
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding VersionDatabase property. Its value is "200".
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\Favorites
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\Network shortcuts
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\Contacts\Documents\Documents
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\Printer shortcuts
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\Recent
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\Templates
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Local
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\Pictures
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: Menu\Programs\Administrative C:\Users\j\AppData\Roaming\Microsoft\Windows\Start of Directors
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\Start start\program
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: Menu C:\Users\j\AppData\Roaming\Microsoft\Windows\Start
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\j\Desktop
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative of Directors
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start start\program
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (c) (B0:AC) [15:06:58:344]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
    MSI (c) (B0:AC) [15:06:58:344]: Note: 1: 2898 2: MS without Serif 3: MS without Serif 4: 0 05:16
    MSI (c) (B0:AC) [15:06:58:344]: MSI_LUA: the MsiRunningElevated of the parameter property to 1 because the installation is already running high.
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding MsiRunningElevated property. Its value is '1 '.
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding privileged property. Its value is '1 '.
    MSI (c) (B0:AC) [15:06:58:344]: Note: 1: 1402 2: HKEY_CURRENT_USER Software Microsoft MS Setup (ACME) \User Info 3:2
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding USERNAME property. Its value is 'j '.
    MSI (c) (B0:AC) [15:06:58:344]: Note: 1: 1402 2: HKEY_CURRENT_USER Software Microsoft MS Setup (ACME) \User Info 3:2
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding a DATABASE property. Its value is 'C:\Users\j\Desktop\MicrosoftFixit50381.msi '.
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding OriginalDatabase property. Its value is 'C:\Users\j\Desktop\MicrosoftFixit50381.msi '.
    MSI (c) (B0:AC) [15:06:58:344]: value of strategy Machine 'MsiDisableEmbeddedUI' is 0
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding SourceDir property. Its value is 'C:\Users\j\Desktop\ '.
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding SOURCEDIR property. Its value is 'C:\Users\j\Desktop\ '.
    MSI (c) (B0:68) [15:06:58:344]: PROPERTY CHANGE: adding VersionHandler property. Its value is "5.00".»
    = Logging started: 13/06/2012-15:06:58 =.
    MSI (c) (B0:AC) [15:06:58:344]: Note: 2 1: 2262: Package_correctif 3:-2147287038
    MSI (c) (B0:AC) [15:06:58:344]: policy value 'DisableRollback' Machine is 0
    MSI (c) (B0:AC) [15:06:58:344]: strategy user 'DisableRollback' is 0
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding UILevel property. Its value is "5".
    MSI (c) (B0:AC) [15:06:58:344]: Note: 2 1: 2262: fonts 3:-2147287038
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding ACTION property. Its value is 'INSTALL '.
    MSI (c) (B0:AC) [15:06:58:344]: doing action: INSTALL
    Action 15:06:58: INSTALL.
    Action start at 15:06:58: INSTALL.
    MSI (c) (B0:AC) [15:06:58:344]: table "InstallUISequence" of the sequence of the UI is present and populated.
    MSI (c) (B0:AC) [15:06:58:344]: UISequence running
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding EXECUTEACTION property. Its value is 'INSTALL '.
    MSI (c) (B0:AC) [15:06:58:344]: action driving: Milestone_ERRCA_UIAN726
    Action 15:06:58: Milestone_ERRCA_UIAN726.
    Action start at 15:06:58: Milestone_ERRCA_UIAN726.
    MSI (c) (B0:AC) [15:06:58:344]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'Milestone_ERRCA_UIAN726. '
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: adding step property. Its value is 'ERRCA_UIANDADVERTISED '.
    Action ended 15:06:58: Milestone_ERRCA_UIAN726. Returns the value 1.
    MSI (c) (B0:AC) [15:06:58:344]: jumping action: ERRCA_UIANDADVERTISED (the condition is false)
    MSI (c) (B0:AC) [15:06:58:344]: action driving: Milestone_AppSearch122
    Action 15:06:58: Milestone_AppSearch122.
    Action start at 15:06:58: Milestone_AppSearch122.
    MSI (c) (B0:AC) [15:06:58:344]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'Milestone_AppSearch122. '
    MSI (c) (B0:AC) [15:06:58:344]: PROPERTY CHANGE: milestone to edit property. Its current value is 'ERRCA_UIANDADVERTISED '. Its new value: "AppSearch".
    Action ended 15:06:58: Milestone_AppSearch122. Returns the value 1.
    MSI (c) (B0:AC) [15:06:58:359]: action driving: AppSearch
    Action 15:06:58: AppSearch. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:06:58: AppSearch.
    MSI (c) (B0:AC) [15:06:58:359]: Note: 2 1: 2262: AppSearch 3:-2147287038
    Action ended 15:06:58: AppSearch. Returns the value 1.
    MSI (c) (B0:AC) [15:06:58:359]: action driving: FindRelatedProducts
    Action 15:06:58: FindRelatedProducts. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:06:58: FindRelatedProducts.
    Action ended 15:06:58: FindRelatedProducts. Returns the value 1.
    MSI (c) (B0:AC) [15:06:58:359]: action driving: Milestone_EulaForm201
    Action 15:06:58: Milestone_EulaForm201.
    Action start at 15:06:58: Milestone_EulaForm201.
    MSI (c) (B0:AC) [15:06:58:359]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'Milestone_EulaForm201. '
    MSI (c) (B0:AC) [15:06:58:359]: PROPERTY CHANGE: milestone to edit property. Its current value is "AppSearch". Its new value: 'EulaForm '.
    Action ended 15:06:58: Milestone_EulaForm201. Returns the value 1.
    MSI (c) (B0:AC) [15:06:58:359]: action driving: EulaForm
    Action 15:06:58: EulaForm.
    Action start at 15:06:58: EulaForm.
    MSI (c) (B0:AC) [15:06:58:359]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'EulaForm. '
    MSI (c) (B0:68) [15:06:58:359]: Note: 2 1: 2262: error 3:-2147287038
    Info 2898.For VSI_MS_Sans_Serif13.0_0_0 textstyle, the system has created a font 'MS Sans Serif', 0 game characters, 13 pixels high.
    MSI (c) (B0:68) [15:06:58:359]: Note: 2 1: 2262: error 3:-2147287038
    Info 2898.For VsdDefaultUIFont.524F4245_5254_5341_4C45_534153783400 textstyle, the system has created a font 'MS Sans Serif', 0 game characters, 13 pixels high.
    MSI (c) (B0:68) [15:06:58:359]: Note: 2 1: 2262: error 3:-2147287038
    Info 2898.For VSI_MS_Sans_Serif16.0_1_0 textstyle, the system has created a font 'MS Sans Serif', 0 game characters, 20 pixels high.
    MSI (c) (B0:68) [15:06:58:359]: Note: 2 1: 2262: case 3:-2147287038
    Action 15:06:58: EulaForm. Dialog created
    MSI (c) (B0:18) [15:06:58:375]: Note: 1: 2731 2:0
    MSI (c) (B0:68) [15:07:00:419]: PROPERTY CHANGE: adding EulaForm_Property property. Its value is '1 '.
    Action ended 15:07:01: EulaForm. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:791]: action driving: EULAACCEPTED_ACTION
    Action 15:07:01: EULAACCEPTED_ACTION.
    Action start at 15:07:01: EULAACCEPTED_ACTION.
    MSI (c) (B0:AC) [15:07:01:807]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'EULAACCEPTED_ACTION. '
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: adding EULAACCEPTED property. Its value is '1 '.
    Action ended 15:07:01: EULAACCEPTED_ACTION. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:807]: action driving: Milestone_LaunchCond24
    Action 15:07:01: Milestone_LaunchCond24.
    Action start at 15:07:01: Milestone_LaunchCond24.
    MSI (c) (B0:AC) [15:07:01:807]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'Milestone_LaunchCond24. '
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: milestone to edit property. Its current value is 'EulaForm '. Its new value: 'LaunchConditions.
    Action ended 15:07:01: Milestone_LaunchCond24. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:807]: action driving: LaunchConditions
    Action 15:07:01: LaunchConditions. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:01: LaunchConditions.
    Action ended 15:07:01: LaunchConditions. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:807]: action driving: CCPSearch
    Action 15:07:01: CCPSearch. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:01: CCPSearch.
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: CCPSearch 3:-2147287038
    Action ended 15:07:01: CCPSearch. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:807]: action driving: RMCCPSearch
    Action 15:07:01: RMCCPSearch. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:01: RMCCPSearch.
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: CCPSearch 3:-2147287038
    Action ended 15:07:01: RMCCPSearch. Returns a value of 0.
    MSI (c) (B0:AC) [15:07:01:807]: action driving: ValidateProductID
    Action 15:07:01: ValidateProductID. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:01: ValidateProductID.
    Action ended 15:07:01: ValidateProductID. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:807]: action driving: Milestone_DIRCA_TARG947
    Action 15:07:01: Milestone_DIRCA_TARG947.
    Action start at 15:07:01: Milestone_DIRCA_TARG947.
    MSI (c) (B0:AC) [15:07:01:807]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'Milestone_DIRCA_TARG947. '
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: milestone to edit property. Its current value is 'LaunchConditions. Its new value: 'DIRCA_TARGETDIR '.
    Action ended 15:07:01: Milestone_DIRCA_TARG947. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:807]: action driving: DIRCA_TARGETDIR
    Action 15:07:01: DIRCA_TARGETDIR. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:01: DIRCA_TARGETDIR.
    MSI (c) (B0:AC) [15:07:01:807]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'DIRCA_TARGETDIR. '
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: adding TARGETDIR property. Its value is "C:\Program Files (x 86) \Microsoft\Microsoft fix 50381'."
    Action ended 15:07:01: DIRCA_TARGETDIR. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:807]: action driving: CostInitialize
    Action 15:07:01: CostInitialize. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:01: CostInitialize.
    MSI (c) (B0:AC) [15:07:01:807]: Machine policy value 'MaxPatchCacheSize' is 10
    MSI (c) (B0:AC) [15:07:01:807]: reference: sort of the base lines for {55D13F49-FCB8-4892-8266-05D373FCAA61}.
    MSI (c) (B0:AC) [15:07:01:807]: reference: new base 2.1.3 transaction.
    MSI (c) (B0:AC) [15:07:01:807]: reference: sort the native order: order 0.
    MSI (c) (B0:AC) [15:07:01:807]: base data table:
    MSI (c) (B0:AC) [15:07:01:807]: ProductCode: {55D13F49-FCB8-4892-8266-05D373FCAA61} Version: 2.1.3 attributes: PatchId 0: BaselineId Native:-2147483648 order: 0
    MSI (c) (B0:AC) [15:07:01:807]: Table of reference file:
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: adding ROOTDRIVE property. Its value is "C:\". ».
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: adding CostingComplete property. Its value is '0 '.
    Action ended 15:07:01: CostInitialize. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:807]: action driving: FileCost
    Action 15:07:01: FileCost. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:01: FileCost.
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: MsiAssembly 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: RemoveFile 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: MoveFile 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: DuplicateFile 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: shortened 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: class 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: Extension 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: TypeLib 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: IniFile 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: ReserveCost 3:-2147287038
    Action ended 15:07:01: FileCost. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:807]: action driving: IsolateComponents
    Action 15:07:01: IsolateComponents. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:01: IsolateComponents.
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: BindImage 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: IsolatedComponent 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: Patch 3:-2147287038
    Action ended 15:07:01: IsolateComponents. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:807]: jumping action: ResumeForm (the condition is false)
    MSI (c) (B0:AC) [15:07:01:807]: jumping action: MaintenanceForm (the condition is false)
    MSI (c) (B0:AC) [15:07:01:807]: action driving: CostFinalize
    Action 15:07:01: CostFinalize. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:01: CostFinalize.
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: adding OutOfDiskSpace property. Its value is '0 '.
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: adding OutOfNoRbDiskSpace property. Its value is '0 '.
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: adding PrimaryVolumeSpaceAvailable property. Its value is '0 '.
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: adding PrimaryVolumeSpaceRequired property. Its value is '0 '.
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: adding PrimaryVolumeSpaceRemaining property. Its value is '0 '.
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: Patch 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: Condition 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: property change TARGETDIR. Its current value is "C:\Program Files (x 86) \Microsoft\Microsoft fix 50381'." Its new value: "C:\Program Files (x 86) \Microsoft\Microsoft fix 50381\.
    MSI (c) (B0:AC) [15:07:01:807]: complete target path resolution. Dumping table Directory...
    MSI (c) (B0:AC) [15:07:01:807]: Note: target paths subject to change (via custom actions or navigation)
    MSI (c) (B0:AC) [15:07:01:807]: Dir (target): key: TARGETDIR, object: C:\Program Files (x 86) \Microsoft\Microsoft fix 50381\
    MSI (c) (B0:AC) [15:07:01:807]: Dir (target): key: WindowsFolder, object: C:\Windows\
    MSI (c) (B0:AC) [15:07:01:807]: Dir (target): key: ProgramMenuFolder, Object: C:\Users\j\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\
    MSI (c) (B0:AC) [15:07:01:807]: Dir (target): key: DesktopFolder, object: C:\Users\j\Desktop\
    MSI (c) (B0:AC) [15:07:01:807]: PROPERTY CHANGE: adding INSTALLLEVEL property. Its value is '1 '.
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: IsolatedComponent 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: BindImage 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: Patch 3:-2147287038
    MSI (c) (B0:AC) [15:07:01:807]: Note: 2 1: 2262: RemoveFile 3:-2147287038
    Action ended 15:07:01: CostFinalize. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:807]: action driving: ProgressForm
    Action 15:07:01: ProgressForm.
    Action start at 15:07:01: ProgressForm.
    MSI (c) (B0:AC) [15:07:01:807]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'ProgressForm. '
    MSI (c) (B0:68) [15:07:01:807]: Note: 2 1: 2262: error 3:-2147287038
    DEBUG: Error 2826: control in the dialog box ProgressForm Line1 extends beyond the boundaries of the dialog box to the right by 3 pixels
    Setup 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, line 1, to the right
    MSI (c) (B0:68) [15:07:01:807]: Note: 2 1: 2262: error 3:-2147287038
    DEBUG: Error 2826: control in the dialog box ProgressForm Line2 extends beyond the boundaries of the dialog box to the right by 3 pixels
    Setup 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, line 2, on the right
    MSI (c) (B0:68) [15:07:01:807]: Note: 2 1: 2262: error 3:-2147287038
    DEBUG: Error 2826: control in the dialog box ProgressForm BannerBmp extends beyond the boundaries of the dialog to the right by 3 pixels
    Setup 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 15:07:01: ProgressForm. Dialog created
    Action ended 15:07:01: ProgressForm. Returns the value 1.
    MSI (c) (B0:AC) [15:07:01:854]: action driving: ExecuteAction
    Action 15:07:01: ExecuteAction. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    MSI (c) (B0:68) [15:07:01:854]: Note: 2 1: 2262: error 3:-2147287038
    Info 2898.For FinalUIFont textstyle, the system has created a 'Arial' font, in 0 character, 15 pixels high.
    Action start at 15:07:01: ExecuteAction.
    MSI (c) (B0:AC) [15:07:01:854]: PROPERTY CHANGE: adding SECONDSEQUENCE property. Its value is '1 '.
    MSI (c) (B0:AC) [15:07:01:854]: grabbed execution mutex.
    MSI (c) (B0:AC) [15:07:01:854]: meter is incremented to disable the stop. Counter after increment: 0
    MSI (c) (B0:AC) [15:07:01:854]: move to the server: TARGETDIR = "C:\Program Files (x 86) \Microsoft\Microsoft Fix it 50381\ ' EULAACCEPTED = '1' CURRENTDIRECTORY ="C:\Users\j\Desktop"CLIENTUILEVEL ="0"CLIENTPROCESSID ="1968"username = 'j' SOURCEDIR ="C:\Users\j\Desktop\"ACTION = 'INSTALL' EXECUTEACTION = 'INSTALL' ROOTDRIVE ="C:\ ". "INSTALLLEVEL ="1"SECONDSEQUENCE ="1"ADDLOCAL = DefaultFeature
    MSI (s) (50: 6 C) [15:07:01:854]: running the installation inside the multi-package transaction C:\Users\j\Desktop\MicrosoftFixit50381.msi
    MSI (s) (50: 6 C) [15:07:01:854]: grabbed execution mutex.
    MSI (s) (50:68) [15:07:01:854]: Resetting cached policy values
    MSI (s) (50:68) [15:07:01:854]: value of strategy Machine 'Debug' is 0
    MSI (s) (50:68) [15:07:01:854]: * RunEngine:
    Product: C:\Users\j\Desktop\MicrosoftFixit50381.msi
    Action: INSTALL
    Command line:
    MSI (s) (50:68) [15:07:01:854]: value of strategy Machine 'DisableUserInstalls' is 0
    MSI (s) (50:68) [15:07:01:854]: caching product context: user not assigned to product: 2AD34A7BDF2F2C440A442DC473151CDB
    MSI (s) (50:68) [15:07:01:854]: using caching product context: user not assigned to product: 2AD34A7BDF2F2C440A442DC473151CDB
    MSI (s) (50:68) [15:07:01:854]: caching product context: user not assigned to product: DED5B648C8CDA1E45B4BF9B5930AACEC
    MSI (s) (50:68) [15:07:01:854]: using caching product context: user not assigned to product: DED5B648C8CDA1E45B4BF9B5930AACEC
    MSI (s) (50:68) [15:07:01:854]: caching product context: machine assigned to product: 00002109020090400000000000F01FEC
    MSI (s) (50:68) [15:07:01:854]: using caching product context: machine assigned to product: 00002109020090400000000000F01FEC
    MSI (s) (50:68) [15:07:01:854]: caching product context: machine assigned to product: 000021599B0090400100000000F01FEC
    MSI (s) (50:68) [15:07:01:854]: using caching product context: machine assigned to product: 000021599B0090400100000000F01FEC
    MSI (s) (50:68) [15:07:01:854]: caching product context: machine assigned to product: 00004109500200000000000000F01FEC
    MSI (s) (50:68) [15:07:01:854]: using caching product context: machine assigned to product: 00004109500200000000000000F01FEC
    MSI (s) (50:68) [15:07:01:854]: caching product context: machine assigned to product: 00006FCA9B229EC4896DC2FC53B9CA70
    MSI (s) (50:68) [15:07:01:854]: using caching product context: machine assigned to product: 00006FCA9B229EC4896DC2FC53B9CA70
    MSI (s) (50:68) [15:07:01:854]: caching product context: machine assigned to product: 03FDC343E20F0A006C18236657A5C99F
    MSI (s) (50:68) [15:07:01:854]: using caching product context: machine assigned to product: 03FDC343E20F0A006C18236657A5C99F
    MSI (s) (50:68) [15:07:01:854]: caching product context: machine assigned to product: 05175FCAB0C45D78863BE210910CF07B
    MSI (s) (50:68) [15:07:01:854]: using caching product context: machine assigned to product: 05175FCAB0C45D78863BE210910CF07B
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 0D756077321A70C3E844C138CE981581
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 0D756077321A70C3E844C138CE981581
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 108D9FFC4CE15F8BC2BAA471099CA581
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 108D9FFC4CE15F8BC2BAA471099CA581
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 166F59DC4C5A5F446AAACEDD192C043D
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 166F59DC4C5A5F446AAACEDD192C043D
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 166F59DC4C5A5F446AAACEDD192C04DC
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 166F59DC4C5A5F446AAACEDD192C04DC
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 1af2a8da7e60d0b429d7e6453b3d0182
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 1af2a8da7e60d0b429d7e6453b3d0182
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 1D034B0FAA6BD374B960AAD30DF10D8B
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 1D034B0FAA6BD374B960AAD30DF10D8B
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 1D5E3C0FEDA1E123187686FED06E995A
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 1D5E3C0FEDA1E123187686FED06E995A
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 230C33823BDAFFDD49CB4E5F655AA793
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 230C33823BDAFFDD49CB4E5F655AA793
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 25F0F292D26B17E429B1986A28042210
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 25F0F292D26B17E429B1986A28042210
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 269AA0DAE1115D147A50E0D319876A16
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 269AA0DAE1115D147A50E0D319876A16
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 2732C0CDCD59FDB09D0F10386DE0ADB7
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 2732C0CDCD59FDB09D0F10386DE0ADB7
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 286FF0AF07CC75C439DC2E673F7E35E7
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 286FF0AF07CC75C439DC2E673F7E35E7
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 2A2C9928636BD0EACEBD348535D5CC17
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 2A2C9928636BD0EACEBD348535D5CC17
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 2A7527EE2A93F2D4D9CA9F2FB5A81E8D
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 2A7527EE2A93F2D4D9CA9F2FB5A81E8D
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 2EBA015DCB4582B135A639DE38C3978D
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 2EBA015DCB4582B135A639DE38C3978D
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 3240FB1934BBD272081E5A78E37163C5
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 3240FB1934BBD272081E5A78E37163C5
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 32E20A7AC508CAA44B805DA9D135EA6A
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 32E20A7AC508CAA44B805DA9D135EA6A
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 339DC8CE50724A3E5C959AF423EC3E1E
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 339DC8CE50724A3E5C959AF423EC3E1E
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 386D3EFEC30985B4BAF86CC8963F7385
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 386D3EFEC30985B4BAF86CC8963F7385
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 3E7D940E935EDC0BA103E6F043EE8EF5
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 3E7D940E935EDC0BA103E6F043EE8EF5
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 3ECDCD77DED23F261845507E5474D270
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 3ECDCD77DED23F261845507E5474D270
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 3EFC05AE6599898CB093FF27FCD78E04
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 3EFC05AE6599898CB093FF27FCD78E04
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 44C2AF74841DCBD4FA069B9143AA8424
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 44C2AF74841DCBD4FA069B9143AA8424
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 45D25C75464F12C0E6D2FDC30A1D1699
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 45D25C75464F12C0E6D2FDC30A1D1699
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 46A934DE810F4DD4B85A23D858BA90BA
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 46A934DE810F4DD4B85A23D858BA90BA
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 4B9515E6915AFE1408FEDA85735151FD
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 4B9515E6915AFE1408FEDA85735151FD
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 4ccf9caae9dddda409c15b94a670bae2
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 4ccf9caae9dddda409c15b94a670bae2
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 4EA42A62D9304AC4784BF238120613FF
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 4EA42A62D9304AC4784BF238120613FF
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 4EA42A62D9304AC4784BF268140622FF
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 4EA42A62D9304AC4784BF268140622FF
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 4EA42A62D9304AC4784BF268140662FF
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 4EA42A62D9304AC4784BF268140662FF
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 4EA42A62D9304AC4784BF268140750FF
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 4EA42A62D9304AC4784BF268140750FF
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 503E35785372F36AAF53AE899CAF076F
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 503E35785372F36AAF53AE899CAF076F
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 54C3703830031764A96842A3AADD19A5
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 54C3703830031764A96842A3AADD19A5
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 55C2BC09D624257069D8B9F0110102A2
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 55C2BC09D624257069D8B9F0110102A2
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 568774731F3A2774DA34AACFB6FC9FF9
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 568774731F3A2774DA34AACFB6FC9FF9
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 57F51FE82AD37612BC300D69DBD169EF
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 57F51FE82AD37612BC300D69DBD169EF
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 58A351005490E997645A9CD2C3F658E2
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 58A351005490E997645A9CD2C3F658E2
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 5A051352A0CD0802A9F5D5D1D7F55E83
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 5A051352A0CD0802A9F5D5D1D7F55E83
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 5E1F9BD7BCA9D0147ACDA7D320C30E54
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 5E1F9BD7BCA9D0147ACDA7D320C30E54
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 5ED62A6B5B2F85D45907F47C060EF0DC
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 5ED62A6B5B2F85D45907F47C060EF0DC
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 67D6ECF5CD5FBA732B8B22BAC8DE1B4D
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 67D6ECF5CD5FBA732B8B22BAC8DE1B4D
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 68A86D24C1BD65248B9CD5D02919A95F
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 68A86D24C1BD65248B9CD5D02919A95F
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 68AB67CA3301004FABE7000000000050
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 68AB67CA3301004FABE7000000000050
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 68AB67CA7DA706750000090000000030
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 68AB67CA7DA706750000090000000030
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 68AB67CA7DA73301B7449A0400000010
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 68AB67CA7DA73301B7449A0400000010
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 6911F73CE72DC564882186271A00975C
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 6911F73CE72DC564882186271A00975C
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 6E3C12FFDF79F4745981D8BC9EC48245
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 6E3C12FFDF79F4745981D8BC9EC48245
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 6E58EC68CABDDFF39B774E7BF9389C90
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 6E58EC68CABDDFF39B774E7BF9389C90
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 6E815EB96CCE9A53884E7857C57002F0
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 6E815EB96CCE9A53884E7857C57002F0
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 6E8A266FCD4F2A1409E1C8110F44DBCE
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 6E8A266FCD4F2A1409E1C8110F44DBCE
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 6E9736FB63990B646BCA5CE63E89D7E2
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 6E9736FB63990B646BCA5CE63E89D7E2
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 6F9E66FF7E38E3A3FA41D89E8A906A4A
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 6F9E66FF7E38E3A3FA41D89E8A906A4A
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 6FF3CC3F07FC91B389EF4A1160E832B1
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 6FF3CC3F07FC91B389EF4A1160E832B1
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 701043F6AA9F6C745BC43C1AF91155F3
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 701043F6AA9F6C745BC43C1AF91155F3
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 788E47A8F0F87104FA35BC4A2211AA5A
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 788E47A8F0F87104FA35BC4A2211AA5A
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 7ADB9507BD1EC2447B1A16449576024A
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 7ADB9507BD1EC2447B1A16449576024A
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 7B1896769D2A0D94F9C43010F831D19A
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 7B1896769D2A0D94F9C43010F831D19A
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 7E577B2224C65CF4E801A9E52375DB49
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 7E577B2224C65CF4E801A9E52375DB49
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 84b9c17023c712640acaf308593282f8
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 84b9c17023c712640acaf308593282f8
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 8C2F50BA806Fb304591EDFA8FDCA3DE1
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 8C2F50BA806Fb304591EDFA8FDCA3DE1
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 8DF49EE825F536443A0481D561231885
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 8DF49EE825F536443A0481D561231885
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 8EE82118DAE80BD4586C712CEC05FF17
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 8EE82118DAE80BD4586C712CEC05FF17
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 9040110900063D11C8EF10054038389C
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 9040110900063D11C8EF10054038389C
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 904CD28A11B6D7215AC3DC4069FF456A
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 904CD28A11B6D7215AC3DC4069FF456A
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 92810D8F1AC12E93F92AA4F5609F5659
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 92810D8F1AC12E93F92AA4F5609F5659
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 9363736248FC2C6060F6C938607FEDC1
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 9363736248FC2C6060F6C938607FEDC1
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 93FDBE4833B47D940ADBBEE6C2E4181C
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 93FDBE4833B47D940ADBBEE6C2E4181C
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 960EFD2EE3801364B9C6344CE899D15E
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 960EFD2EE3801364B9C6344CE899D15E
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 9624DEE6D8858b548AC0629AAC26EEE4
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 9624DEE6D8858b548AC0629AAC26EEE4
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 96F4F346A6A525B4DB65959008B055F6
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 96F4F346A6A525B4DB65959008B055F6
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 9B24BC6F330F25148831FF11ADE8A687
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 9B24BC6F330F25148831FF11ADE8A687
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 9B3B508BE94BAE4DCA362627638CE8AC
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 9B3B508BE94BAE4DCA362627638CE8AC
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 9DB288F89FC03DD3EFF6A397F636BEDC
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 9DB288F89FC03DD3EFF6A397F636BEDC
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: 9F2595648CECC8DF75A46AECA7F49E6A
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: 9F2595648CECC8DF75A46AECA7F49E6A
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: A1FFA879939B77148BA58CB78176CAC5
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: A1FFA879939B77148BA58CB78176CAC5
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: A3878338869058B3FA7CABEAA036CD05
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: A3878338869058B3FA7CABEAA036CD05
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: a4cab25097f64d640a42c11e4b7fc34d
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: a4cab25097f64d640a42c11e4b7fc34d
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: A4FA46DB08C82514DA77CFDD0F2580BA
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: A4FA46DB08C82514DA77CFDD0F2580BA
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: A6C4EA4EA1980053C1E3A7A06A6CD520
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: A6C4EA4EA1980053C1E3A7A06A6CD520
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: A7C639EE04AE5D13B956E8E380C98382
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: A7C639EE04AE5D13B956E8E380C98382
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: A7CD37D3D1D2FC54A876427893527C61
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: A7CD37D3D1D2FC54A876427893527C61
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: A80D00DEF5C3D884390A0AF4122F9365
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: A80D00DEF5C3D884390A0AF4122F9365
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: A9DF4E9D422FDD64BD4370BCAA7C159B
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: A9DF4E9D422FDD64BD4370BCAA7C159B
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: ABB21E0F66DA22044A351A8C0A4C5D07
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: ABB21E0F66DA22044A351A8C0A4C5D07
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: AE8C22496C0B79148BCFCD976785AC00
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: AE8C22496C0B79148BCFCD976785AC00
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: AFAD45F1162926A45BD9C6F9624BF84E
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: AFAD45F1162926A45BD9C6F9624BF84E
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: B0F57C6D1CB39CF48B5CF3E7E80D95AC
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: B0F57C6D1CB39CF48B5CF3E7E80D95AC
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: b25099274a207264182f8181add555d0
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: b25099274a207264182f8181add555d0
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: B280BA81485647F4A8CB5D39C54FE6C4
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: B280BA81485647F4A8CB5D39C54FE6C4
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: B55DF58AB1984134795AAE690CDB085B
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: B55DF58AB1984134795AAE690CDB085B
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: B5891039611D39A49AD349850048FF68
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: B5891039611D39A49AD349850048FF68
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: B7573E6B77E5519368A6CCCFB4D891C4
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: B7573E6B77E5519368A6CCCFB4D891C4
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: B7A5008C8369DD148BB3FA7277452E11
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: B7A5008C8369DD148BB3FA7277452E11
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: BD779456100020000010AEDB22D8EDB8
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: BD779456100020000010AEDB22D8EDB8
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: C173E5AD3336A8D3394AF65D2BB0CCE6
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: C173E5AD3336A8D3394AF65D2BB0CCE6
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: c1c4f01781cc94c4c8fb1542c0981a2a
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: c1c4f01781cc94c4c8fb1542c0981a2a
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: C28643E881181F13CBC489DC69571E2C
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: C28643E881181F13CBC489DC69571E2C
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: C4910073DD5CA934EB606A9606ACC407
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: C4910073DD5CA934EB606A9606ACC407
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: C491DB6F091437D41B1B4CC89929B1EF
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: C491DB6F091437D41B1B4CC89929B1EF
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: C5E15486C9A0C5D4D860E69226249E80
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: C5E15486C9A0C5D4D860E69226249E80
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: C6B56403F35B1A94E9AB3A1F78DA05E2
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: C6B56403F35B1A94E9AB3A1F78DA05E2
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: C78A0900E0E34D34AA177AB16065A3A4
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: C78A0900E0E34D34AA177AB16065A3A4
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: C8015D5A218EA87619EF921DDBEA36A6
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: C8015D5A218EA87619EF921DDBEA36A6
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: C88D1A60201E7254FA0792FF7DFA12A5
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: C88D1A60201E7254FA0792FF7DFA12A5
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: CA0B84B9318C4714092474A68857297C
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: CA0B84B9318C4714092474A68857297C
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: CADE42353DED56A38618484B8B8A7A9F
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: CADE42353DED56A38618484B8B8A7A9F
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: CEB6B96C0127B4CCF07429947E728599
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: CEB6B96C0127B4CCF07429947E728599
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: CFD2C1F142D260E3CB8B271543DA9F98
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: CFD2C1F142D260E3CB8B271543DA9F98
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: CFE98E2070B7A5D4AA30E90C099241EE
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: CFE98E2070B7A5D4AA30E90C099241EE
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: D03E6E60894BF2449A3470ED147D7F58
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: D03E6E60894BF2449A3470ED147D7F58
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: D20352A90C039D93DBF6126ECE614057
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: D20352A90C039D93DBF6126ECE614057
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: D276F30548C6A844F8F8B43CA58C4314
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: D276F30548C6A844F8F8B43CA58C4314
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: D7314F9862C648A4DB8BE2A5B47BE100
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: D7314F9862C648A4DB8BE2A5B47BE100
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: D8602CBBC9EC5F846AAEB4449BBD415A
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: D8602CBBC9EC5F846AAEB4449BBD415A
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: DBA18E807F972C9488F1DFC60B796539
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: DBA18E807F972C9488F1DFC60B796539
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: DDA39468D428E8B4DB27C8D5DC5CA217
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: DDA39468D428E8B4DB27C8D5DC5CA217
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: DDB6C50237B7ED245850A990F3532A83
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: DDB6C50237B7ED245850A990F3532A83
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: DE6B4B17576C7491810361C3365CC208
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: DE6B4B17576C7491810361C3365CC208
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: DFC90B5F2B0FFA63D84FD16F6BF37C4B
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: DFC90B5F2B0FFA63D84FD16F6BF37C4B
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: E072096A10A46DB4C8324C144377EED2
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: E072096A10A46DB4C8324C144377EED2
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: E2E1F599245F0134E8D199625F2A973B
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: E2E1F599245F0134E8D199625F2A973B
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: E5D9D200AB92D6E3B94CD3D7D6CB37C5
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: E5D9D200AB92D6E3B94CD3D7D6CB37C5
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: E6680C84BE75C4443817E8341260B63C
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: E6680C84BE75C4443817E8341260B63C
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: E757FC781F1C22D468C5006C59B02585
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: E757FC781F1C22D468C5006C59B02585
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: E9384A458F781DB469283A949E49F3A0
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: E9384A458F781DB469283A949E49F3A0
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: E979633747A3EE6E0BFE17E5AEEAD421
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: E979633747A3EE6E0BFE17E5AEEAD421
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: ECEC214627185EB439B5C6CECA2DAC78
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: ECEC214627185EB439B5C6CECA2DAC78
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: ED2388710ED978C4F92839519A0B9358
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: ED2388710ED978C4F92839519A0B9358
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: F207464E3345CE64F8565129670C5AF4
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: F207464E3345CE64F8565129670C5AF4
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: F336D6C736DCF835D064BBAF98EBC27A
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: F336D6C736DCF835D064BBAF98EBC27A
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: F60730A4A66673047777F5728467D401
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: F60730A4A66673047777F5728467D401
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: F7AC5766B15EA6F4994D8F0F21C4E6AA
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: F7AC5766B15EA6F4994D8F0F21C4E6AA
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: F7C5C8DC85C758F498776A0CC8809721
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: F7C5C8DC85C758F498776A0CC8809721
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: F92F4A37CA13DBE4AAB1C05C1FC8F838
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: F92F4A37CA13DBE4AAB1C05C1FC8F838
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: FB4B305EBB7FF5D3B88C6F491BFC9F24
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: FB4B305EBB7FF5D3B88C6F491BFC9F24
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: FB540C64F3B24CB4E8C4000EFCB89DBD
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: FB540C64F3B24CB4E8C4000EFCB89DBD
    MSI (s) (50:68) [15:07:01:869]: caching product context: machine assigned to product: FCD1B590B8E5CE74B9818491817A13BD
    MSI (s) (50:68) [15:07:01:869]: using caching product context: machine assigned to product: FCD1B590B8E5CE74B9818491817A13BD
    MSI (s) (50:68) [15:07:01:885]: value of strategy Machine 'LimitSystemRestoreCheckpointing' is 0
    MSI (s) (50:68) [15:07:01:885]: Note: 1: 1715 2: Microsoft Fix it 50381
    MSI (s) (50:68) [15:07:01:885]: Note: 2 1: 2262: error 3:-2147287038
    MSI (s) (50:68) [15:07:01:885]: SRSetRestorePoint API call. dwRestorePtType: 0, dwEventType: 102, llSequenceNumber: 0, szDescription: "installed Microsoft Fix it 50381.
    MSI (s) (50:68) [15:07:07:969]: the SRSetRestorePoint API call was successful. Referred State: 0, llSequenceNumber: 111.
    MSI (s) (50:68) [15:07:07:969]: file will have the applied safety of OpCode.
    MSI (s) (50:68) [15:07:07:969]: STRATEGY of RESTRICTION SOFTWARE: check the package--> "C:\Users\j\Desktop\MicrosoftFixit50381.msi" against the software restriction policy
    MSI (s) (50:68) [15:07:07:969]: STRATEGY of RESTRICTION SOFTWARE: C:\Users\j\Desktop\MicrosoftFixit50381.msi has a digital signature
    MSI (s) (50:68) [15:07:08:000]: STRATEGY of RESTRICTION SOFTWARE: C:\Users\j\Desktop\MicrosoftFixit50381.msi is allowed to run at the level of authorization 'unlimited '.
    MSI (s) (50:68) [15:07:08:000]: dialogue of end not activated
    MSI (s) (50:68) [15:07:08:000]: original package == > C:\Users\j\Desktop\MicrosoftFixit50381.msi
    MSI (s) (50:68) [15:07:08:000]: package we lack of == > C:\Windows\Installer\142aa4.msi
    MSI (s) (50:68) [15:07:08:000]: APPCOMPAT: replacements of compatibility mode properties found.
    MSI (s) (50:68) [15:07:08:000]: APPCOMPAT: looking for entry with ProductCode '{55D13F49-FCB8-4892-8266-05D373FCAA61}' appcompat database
    MSI (s) (50:68) [15:07:08:000]: APPCOMPAT: no matching ProductCode found in the database.
    MSI (s) (50:68) [15:07:08:000]: MSCOREE not loaded loading copy from system32
    MSI (s) (50:68) [15:07:08:000]: value of strategy Machine 'TransformsSecure' is 0
    MSI (s) (50:68) [15:07:08:000]: value 'TransformsAtSource' user policy is 0
    MSI (s) (50:68) [15:07:08:000]: Note: 2 1: 2262: file 3:-2147287038
    MSI (s) (50:68) [15:07:08:000]: Note: 2 1: 2262: MsiFileHash 3:-2147287038
    MSI (s) (50:68) [15:07:08:000]: value of strategy Machine 'DisablePatch' is 0
    MSI (s) (50:68) [15:07:08:000]: value of strategy Machine 'AllowLockdownPatch' is 0
    MSI (s) (50:68) [15:07:08:000]: value of strategy Machine 'DisableLUAPatching' is 0
    MSI (s) (50:68) [15:07:08:000]: value of strategy Machine 'DisableFlyWeightPatching' is 0
    MSI (s) (50:68) [15:07:08:000]: activation setting basic caching for this transaction because all active patches are MSI 3.0 style MSP or at least a patch of minor update of MSI 3.0 is active
    MSI (s) (50:68) [15:07:08:000]: APPCOMPAT: looking for entry with ProductCode '{55D13F49-FCB8-4892-8266-05D373FCAA61}' appcompat database
    MSI (s) (50:68) [15:07:08:000]: APPCOMPAT: no matching ProductCode found in the database.
    MSI (s) (50:68) [15:07:08:000]: transformations are not secure.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding MsiLogFileLocation property. Its value is 'C:\Users\j\AppData\Local\Temp\MSI3e2c0.LOG '.
    MSI (s) (50:68) [15:07:08:000]: command line: TARGETDIR = c: Program Files (x 86) file \Microsoft\Microsoft set 50381\ EULAACCEPTED = 1 CURRENTDIRECTORY = C:\Users\j\Desktop CLIENTUILEVEL = 0 CLIENTPROCESSID = 1968 USERNAME = j = C:\Users\j\Desktop\ ACTION = INSTALL EXECUTEACTION INSTALLER ROOTDRIVE = C = SOURCEDIR:------INSTALLLEVEL = 1 SECONDSEQUENCE = 1 ADDLOCAL = DefaultFeature ACTION = INSTALL
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding PackageCode property. Its value is '{1C7C3009-013E-4A16-9A0F-0000FB80A613} '.
    MSI (s) (50:68) [15:07:08:000]: Product Code passed to Engine.Initialize: "
    MSI (s) (50:68) [15:07:08:000]: the Product Code of the table of properties before transformations: "{55D13F49-FCB8-4892-8266-05D373FCAA61}".
    MSI (s) (50:68) [15:07:08:000]: the Product Code of the table of properties after transformations: "{55D13F49-FCB8-4892-8266-05D373FCAA61}".
    MSI (s) (50:68) [15:07:08:000]: unregistered product: first start installation
    MSI (s) (50:68) [15:07:08:000]: produced {55D13F49-FCB8-4892-8266-05D373FCAA61} is not supported.
    MSI (s) (50:68) [15:07:08:000]: MSI_LUA: invites of credentials not required, the user is an administrator
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding ProductState property. Its value is '-1'. '.
    MSI (s) (50:68) [15:07:08:000]: entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (50:68) [15:07:08:000]: value 'SearchOrder' user policy is 'nmu '.
    MSI (s) (50:68) [15:07:08:000]: adding new sources is allowed.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding PackagecodeChanging property. Its value is '1 '.
    MSI (s) (50:68) [15:07:08:000]: Package name extracted from package path: 'MicrosoftFixit50381.msi '.
    MSI (s) (50:68) [15:07:08:000]: package be registered: "MicrosoftFixit50381.msi."
    MSI (s) (50:68) [15:07:08:000]: Note: 2 1: 2262: error 3:-2147287038
    MSI (s) (50:68) [15:07:08:000]: Note: 2 1: 2262: AdminProperties 3:-2147287038
    MSI (s) (50:68) [15:07:08:000]: Machine policy value 'DisableMsi' is 0
    MSI (s) (50:68) [15:07:08:000]: value of strategy Machine 'AlwaysInstallElevated' is 0
    MSI (s) (50:68) [15:07:08:000]: "AlwaysInstallElevated" user policy value is 0
    MSI (s) (50:68) [15:07:08:000]: the product '{55D13F49-FCB8-4892-8266-05D373FCAA61}' is running with user privileges: it is not affected.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding TARGETDIR property. Its value is ' C:\Program Files (x 86) \Microsoft\Microsoft fix 50381\.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding EULAACCEPTED property. Its value is '1 '.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding CURRENTDIRECTORY property. Its value is 'C:\Users\j\Desktop '.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding CLIENTUILEVEL property. Its value is '0 '.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding CLIENTPROCESSID property. Its value is '1968'.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding USERNAME property. Its value is 'j '.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding SOURCEDIR property. Its value is 'C:\Users\j\Desktop\ '.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding ACTION property. Its value is 'INSTALL '.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding EXECUTEACTION property. Its value is 'INSTALL '.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding ROOTDRIVE property. Its value is "C:\". ».
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding INSTALLLEVEL property. Its value is '1 '.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding SECONDSEQUENCE property. Its value is '1 '.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding ADDLOCAL property. Its value is 'DefaultFeature '.
    MSI (s) (50:68) [15:07:08:000]: value of strategy Machine 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding MsiRestartManagerSessionKey property. Its value is '6bcbf50d546d1d47bc7d73cc7a682962 '.
    MSI (s) (50:68) [15:07:08:000]: MANAGER of REBOOT: logon.
    MSI (s) (50:68) [15:07:08:000]: engine has iefSecondSequence set to true.
    MSI (s) (50:68) [15:07:08:000]: TRANSFORMS property is now:
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: deleting SOURCEDIR property. Its current value is 'C:\Users\j\Desktop\ '.
    MSI (s) (50:68) [15:07:08:000]: PROPERTY CHANGE: adding VersionDatabase property. Its value is "200".
    MSI (s) (50:68) [15:07:08:000]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming
    MSI (s) (50:68) [15:07:08:000]: SHELL32::SHGetFolderPath returned: C:\Users\j\Favorites
    MSI (s) (50:68) [15:07:08:000]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\Network shortcuts
    MSI (s) (50:68) [15:07:08:000]: SHELL32::SHGetFolderPath returned: C:\Users\j\Contacts\Documents\Documents
    MSI (s) (50:68) [15:07:08:000]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\Printer shortcuts
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\Recent
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\Templates
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Local
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\Users\j\Pictures
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: Menu\Programs\Administrative C:\Users\j\AppData\Roaming\Microsoft\Windows\Start of Directors
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming\Microsoft\Windows\Start start\program
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: Menu C:\Users\j\AppData\Roaming\Microsoft\Windows\Start
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\Users\j\Desktop
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative of Directors
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start start\program
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (s) (50:68) [15:07:08:016]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
    MSI (s) (50:68) [15:07:08:016]: Note: 1: 2898 2: MS without Serif 3: MS without Serif 4: 0 05:16
    MSI (s) (50:68) [15:07:08:016]: MSI_LUA: the MsiRunningElevated of the parameter property to 1 because the installation is already running high.
    MSI (s) (50:68) [15:07:08:016]: PROPERTY CHANGE: adding MsiRunningElevated property. Its value is '1 '.
    MSI (s) (50:68) [15:07:08:016]: PROPERTY CHANGE: adding privileged property. Its value is '1 '.
    MSI (s) (50:68) [15:07:08:016]: Note: 1: 1402 2: HKEY_CURRENT_USER Software Microsoft MS Setup (ACME) \User Info 3:2
    MSI (s) (50:68) [15:07:08:016]: PROPERTY CHANGE: adding a DATABASE property. Its value is 'C:\Windows\Installer\142aa4.msi '.
    MSI (s) (50:68) [15:07:08:016]: PROPERTY CHANGE: adding OriginalDatabase property. Its value is 'C:\Users\j\Desktop\MicrosoftFixit50381.msi '.
    MSI (s) (50:68) [15:07:08:016]: value of strategy Machine 'MsiDisableEmbeddedUI' is 0
    MSI (s) (50:68) [15:07:08:016]: EEUI - MsiEmbeddedUI disable for the service because it is not a basic/quiet installation
    MSI (s) (50:68) [15:07:08:016]: Note: 2 1: 2262: Package_correctif 3:-2147287038
    MSI (s) (50:68) [15:07:08:016]: policy value 'DisableRollback' Machine is 0
    MSI (s) (50:68) [15:07:08:016]: strategy user 'DisableRollback' is 0
    MSI (s) (50:68) [15:07:08:016]: PROPERTY CHANGE: adding UILevel property. Its value is "5".
    MSI (s) (50:68) [15:07:08:016]: Note: 2 1: 2262: fonts 3:-2147287038
    MSI (s) (50:68) [15:07:08:016]: PROPERTY CHANGE: adding pre-selected property. Its value is '1 '.
    MSI (s) (50:68) [15:07:08:016]: doing action: INSTALL
    Action 15:07:08: INSTALL.
    Action start at 15:07:08: INSTALL.
    MSI (s) (50:68) [15:07:08:031]: ExecuteSequence running
    MSI (s) (50:68) [15:07:08:031]: action driving: Milestone_AppSearch122
    Action 15:07:08: Milestone_AppSearch122.
    Action start at 15:07:08: Milestone_AppSearch122.
    MSI (s) (50:68) [15:07:08:031]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'Milestone_AppSearch122. '
    MSI (s) (50:68) [15:07:08:031]: PROPERTY CHANGE: adding step property. Its value is "AppSearch".
    Action ended 15:07:08: Milestone_AppSearch122. Returns the value 1.
    MSI (s) (50:68) [15:07:08:031]: action driving: AppSearch
    Action 15:07:08: AppSearch. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:08: AppSearch.
    MSI (s) (50:68) [15:07:08:031]: action AppSearch jump: already done client side
    Action ended 15:07:08: AppSearch. Returns a value of 0.
    MSI (s) (50:68) [15:07:08:031]: action driving: FindRelatedProducts
    Action 15:07:08: FindRelatedProducts. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:08: FindRelatedProducts.
    MSI (s) (50:68) [15:07:08:031]: jump FindRelatedProducts action: already done client side
    Action ended 15:07:08: FindRelatedProducts. Returns a value of 0.
    MSI (s) (50:68) [15:07:08:031]: action driving: Milestone_LaunchCond24
    Action 15:07:08: Milestone_LaunchCond24.
    Action start at 15:07:08: Milestone_LaunchCond24.
    MSI (s) (50:68) [15:07:08:031]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'Milestone_LaunchCond24. '
    MSI (s) (50:68) [15:07:08:031]: PROPERTY CHANGE: milestone to edit property. Its current value is "AppSearch". Its new value: 'LaunchConditions.
    Action ended 15:07:08: Milestone_LaunchCond24. Returns the value 1.
    MSI (s) (50:68) [15:07:08:031]: action driving: LaunchConditions
    Action 15:07:08: LaunchConditions. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:08: LaunchConditions.
    Action ended 15:07:08: LaunchConditions. Returns the value 1.
    MSI (s) (50:68) [15:07:08:031]: action driving: CCPSearch
    Action 15:07:08: CCPSearch. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:08: CCPSearch.
    MSI (s) (50:68) [15:07:08:031]: action to jump CCPSearch: already done client side
    Action ended 15:07:08: CCPSearch. Returns a value of 0.
    MSI (s) (50:68) [15:07:08:031]: action driving: RMCCPSearch
    Action 15:07:08: RMCCPSearch. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:08: RMCCPSearch.
    MSI (s) (50:68) [15:07:08:031]: action jump RMCCPSearch: already done client side
    Action ended 15:07:08: RMCCPSearch. Returns a value of 0.
    MSI (s) (50:68) [15:07:08:031]: action driving: ValidateProductID
    Action 15:07:08: ValidateProductID. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:08: ValidateProductID.
    Action ended 15:07:08: ValidateProductID. Returns the value 1.
    MSI (s) (50:68) [15:07:08:031]: action driving: Milestone_DIRCA_TARG29
    Action 15:07:08: Milestone_DIRCA_TARG29.
    Action start at 15:07:08: Milestone_DIRCA_TARG29.
    MSI (s) (50:68) [15:07:08:031]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'Milestone_DIRCA_TARG29. '
    MSI (s) (50:68) [15:07:08:031]: PROPERTY CHANGE: milestone to edit property. Its current value is 'LaunchConditions. Its new value: 'DIRCA_TARGETDIR '.
    Action ended 15:07:08: Milestone_DIRCA_TARG29. Returns the value 1.
    MSI (s) (50:68) [15:07:08:031]: jumping action: DIRCA_TARGETDIR (the condition is false)
    MSI (s) (50:68) [15:07:08:031]: action driving: CostInitialize
    Action 15:07:08: CostInitialize. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:08: CostInitialize.
    MSI (s) (50:68) [15:07:08:031]: Machine policy value 'MaxPatchCacheSize' is 10
    MSI (s) (50:68) [15:07:08:031]: reference: sort of the base lines for {55D13F49-FCB8-4892-8266-05D373FCAA61}.
    MSI (s) (50:68) [15:07:08:031]: reference: new base 2.1.3 transaction.
    MSI (s) (50:68) [15:07:08:031]: reference: sort the native order: order 0.
    MSI (s) (50:68) [15:07:08:031]: base data table:
    MSI (s) (50:68) [15:07:08:031]: ProductCode: {55D13F49-FCB8-4892-8266-05D373FCAA61} Version: 2.1.3 attributes: PatchId 0: BaselineId Native:-2147483648 order: 0
    MSI (s) (50:68) [15:07:08:031]: Table of reference file:
    MSI (s) (50:68) [15:07:08:031]: PROPERTY CHANGE: adding CostingComplete property. Its value is '0 '.
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: Patch 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: Package_correctif 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: MsiPatchHeaders 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 1: 2205 2:3: __MsiPatchFileList
    MSI (s) (50:68) [15:07:08:031]: Dumping __MsiPatchMedia table...
    MSI (s) (50:68) [15:07:08:031]: backup compression method Delta for this transaction of product is "obsolescence inherited from MSI 2.0.
    Action ended 15:07:08: CostInitialize. Returns the value 1.
    MSI (s) (50:68) [15:07:08:031]: action driving: FileCost
    Action 15:07:08: FileCost. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:08: FileCost.
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: MsiAssembly 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: RemoveFile 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: MoveFile 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: DuplicateFile 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: shortened 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: class 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: Extension 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: TypeLib 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: IniFile 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: ReserveCost 3:-2147287038
    Action ended 15:07:08: FileCost. Returns the value 1.
    MSI (s) (50:68) [15:07:08:031]: action driving: IsolateComponents
    Action 15:07:08: IsolateComponents. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:08: IsolateComponents.
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: BindImage 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: IsolatedComponent 3:-2147287038
    Action ended 15:07:08: IsolateComponents. Returns the value 1.
    MSI (s) (50:68) [15:07:08:031]: action driving: CostFinalize
    Action 15:07:08: CostFinalize. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:08: CostFinalize.
    MSI (s) (50:68) [15:07:08:031]: PROPERTY CHANGE: adding OutOfDiskSpace property. Its value is '0 '.
    MSI (s) (50:68) [15:07:08:031]: PROPERTY CHANGE: adding OutOfNoRbDiskSpace property. Its value is '0 '.
    MSI (s) (50:68) [15:07:08:031]: PROPERTY CHANGE: adding PrimaryVolumeSpaceAvailable property. Its value is '0 '.
    MSI (s) (50:68) [15:07:08:031]: PROPERTY CHANGE: adding PrimaryVolumeSpaceRequired property. Its value is '0 '.
    MSI (s) (50:68) [15:07:08:031]: PROPERTY CHANGE: adding PrimaryVolumeSpaceRemaining property. Its value is '0 '.
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: Condition 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: complete target path resolution. Dumping table Directory...
    MSI (s) (50:68) [15:07:08:031]: Note: target paths subject to change (via custom actions or navigation)
    MSI (s) (50:68) [15:07:08:031]: Dir (target): key: TARGETDIR, object: C:\Program Files (x 86) \Microsoft\Microsoft fix 50381\
    MSI (s) (50:68) [15:07:08:031]: Dir (target): key: WindowsFolder, object: C:\Windows\
    MSI (s) (50:68) [15:07:08:031]: Dir (target): key: ProgramMenuFolder, Object: C:\Users\j\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\
    MSI (s) (50:68) [15:07:08:031]: Dir (target): key: DesktopFolder, object: C:\Users\j\Desktop\
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: IsolatedComponent 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: BindImage 3:-2147287038
    Action ended 15:07:08: CostFinalize. Returns the value 1.
    MSI (s) (50:68) [15:07:08:031]: action driving: SetODBCFolders
    Action 15:07:08: SetODBCFolders. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:08: SetODBCFolders.
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: ODBCDriver 3:-2147287038
    MSI (s) (50:68) [15:07:08:031]: Note: 2 1: 2262: ODBCTranslator 3:-2147287038
    Action ended 15:07:08: SetODBCFolders. Returns the value 1.
    MSI (s) (50:68) [15:07:08:047]: action driving: InstallValidate
    Action 15:07:08: InstallValidate. {\FinalUIFont} [PROGRESS_RESTORE_TXT]
    Action start at 15:07:08: InstallValidate.
    MSI (s) (50:68) [15:07:08:047]: PROPERTY CHANGE: deleting MsiRestartManagerSessionKey property. Its current value is '6bcbf50d546d1d47bc7d73cc7a682962 '.
    MSI (s) (50:68) [15:07:08:047]: function: DefaultFeature; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (50:68) [15:07:08:047]: component: C_DefaultComponent; Installed: Absent;   Request: Local;   Action: Null;   Client status: unknown
    MSI (s) (50:68) [15:07:08:047]: component: C_ADDKEY1; Installed: Null;   Request: Local;   Action: Local;   Client status: Null
    MSI (s) (50:68) [15:07:08:047]: component: C_K64_ADDKEY1; Installed: Null;   Request: Local;   Action: Local;   Client status: Null
    MSI (s) (50:68) [15:07:08:047]: component: __C_ADDKEY165; Installed: Null;   Request: Local;   Action: Local;   Client status: Null
    MSI (s) (50:68) [15:07:08:047]: component: __C_K64_ADDKEY165; Installed: Null;   Request: Local;   Action: Local;   Client status: Null
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: BindImage 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: ProgId 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: PublishComponent 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: SelfReg 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: Extension 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: fonts 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: class 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: icon 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: TypeLib 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: RemoveFile 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: DuplicateFile 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: ReserveCost 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: TypeLib 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: class 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: Extension 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: class 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: Extension 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: PROPERTY CHANGE: property to change CostingComplete. Its current value is '0'. Its new value: '1'.
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: BindImage 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: ProgId 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: PublishComponent 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: SelfReg 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: Extension 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: fonts 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: class 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 2 1: 2262: icon 3:-2147287038
    MSI (s) (50:68) [15:07:08:047]: Note: 1: 2727 2:
    MSI (s) (50:68) [15:07:08:047]: Note: 1: 2205 2:3: FilesInUse
    MSI (s) (50:68) [15:07:08:047]: Note: 1: 2727 2:
    Action ended 15:07:08: InstallValidate. Returns the value 1.
    MSI (s) (50:68) [15:07:08:047]: action driving: InstallInitialize
    Action 15:07:08: InstallInitialize. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:08: InstallInitialize.
    MSI (s) (50:68) [15:07:08:047]: value of strategy Machine 'AlwaysInstallElevated' is 0
    MSI (s) (50:68) [15:07:08:047]: "AlwaysInstallElevated" user policy value is 0
    MSI (s) (50:68) [15:07:08:047]: BeginTransaction: Server locking
    MSI (s) (50:68) [15:07:08:047]: server not locked: locking for product {55D13F49-FCB8-4892-8266-05D373FCAA61}
    Action ended 15:07:09: InstallInitialize. Returns the value 1.
    MSI (s) (50:68) [15:07:09:685]: action driving: AllocateRegistrySpace
    Action 15:07:09: AllocateRegistrySpace. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: AllocateRegistrySpace.
    Action ended 15:07:09: AllocateRegistrySpace. Returns the value 1.
    MSI (s) (50:68) [15:07:09:701]: action driving: ProcessComponents
    Action 15:07:09: ProcessComponents. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: ProcessComponents.
    MSI (s) (50:68) [15:07:09:701]: Note: 1: 2205 2:3: MsiPatchCertificate
    MSI (s) (50:68) [15:07:09:701]: LUA patching is disabled: MsiPatchCertificate table missing
    MSI (s) (50:68) [15:07:09:701]: source resolution.
    MSI (s) (50:68) [15:07:09:701]: source resolution to launched of the source.
    MSI (s) (50:68) [15:07:09:701]: launched setting - the source as used last.
    MSI (s) (50:68) [15:07:09:701]: PROPERTY CHANGE: adding SourceDir property. Its value is 'C:\Users\j\Desktop\ '.
    MSI (s) (50:68) [15:07:09:701]: PROPERTY CHANGE: adding SOURCEDIR property. Its value is 'C:\Users\j\Desktop\ '.
    MSI (s) (50:68) [15:07:09:701]: PROPERTY CHANGE: adding SourcedirProduct property. Its value is '{55D13F49-FCB8-4892-8266-05D373FCAA61} '.
    MSI (s) (50:68) [15:07:09:701]: SOURCEDIR == > C:\Users\j\Desktop\
    MSI (s) (50:68) [15:07:09:701]: SOURCEDIR product == > {55D13F49-FCB8-4892-8266-05D373FCAA61}
    MSI (s) (50:68) [15:07:09:701]: determine the type of source
    MSI (s) (50:68) [15:07:09:701]: Source type of package 'MicrosoftFixit50381.msi': 2
    MSI (s) (50:68) [15:07:09:701]: resolution of full Source path. Dumping table Directory...
    MSI (s) (50:68) [15:07:09:701]: Dir (source): key: TARGETDIR, Object: C:\Users\j\Desktop\, LongSubPath:, ShortSubPath:
    MSI (s) (50:68) [15:07:09:701]: Dir (source): key: WindowsFolder, object: C:\Users\j\Desktop\, LongSubPath:, ShortSubPath:
    MSI (s) (50:68) [15:07:09:701]: Dir (source): key: ProgramMenuFolder, Object: C:\Users\j\Desktop\, LongSubPath: the user Menu\, ShortSubPath programs: USER ~ 2
    MSI (s) (50:68) [15:07:09:701]: Dir (source): key: DesktopFolder, Object: C:\Users\j\Desktop\, LongSubPath: the user Desktop\, ShortSubPath: USER ~ 1\
    Action 15:07:09: GenerateScript. Generation of action script operations:
    GenerateScript: {\FinalUIFont}[PROGRESS_PROCESSED_TXT]
    Action ended 15:07:09: ProcessComponents. Returns the value 1.
    MSI (s) (50:68) [15:07:09:701]: action driving: MsiUnpublishAssemblies
    Action 15:07:09: MsiUnpublishAssemblies. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: MsiUnpublishAssemblies.
    Action ended 15:07:09: MsiUnpublishAssemblies. Returns the value 1.
    MSI (s) (50:68) [15:07:09:701]: action driving: UnpublishComponents
    Action 15:07:09: UnpublishComponents. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: UnpublishComponents.
    MSI (s) (50:68) [15:07:09:701]: Note: 2 1: 2262: PublishComponent 3:-2147287038
    Action ended 15:07:09: UnpublishComponents. Returns the value 1.
    MSI (s) (50:68) [15:07:09:701]: action driving: UnpublishFeatures
    Action 15:07:09: UnpublishFeatures. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: UnpublishFeatures.
    Action ended 15:07:09: UnpublishFeatures. Returns the value 1.
    MSI (s) (50:68) [15:07:09:701]: action driving: StartServices
    Action 15:07:09: StartServices. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: StartServices.
    MSI (s) (50:68) [15:07:09:701]: Note: 2 1: 2262: ServiceControl 3:-2147287038
    Action ended 15:07:09: StartServices. Returns the value 1.
    MSI (s) (50:68) [15:07:09:701]: action driving: DeleteServices
    Action 15:07:09: DeleteServices. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: DeleteServices.
    MSI (s) (50:68) [15:07:09:701]: Note: 2 1: 2262: ServiceControl 3:-2147287038
    Action ended 15:07:09: DeleteServices. Returns the value 1.
    MSI (s) (50:68) [15:07:09:701]: action driving: UnregisterComPlus
    Action 15:07:09: UnregisterComPlus. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: UnregisterComPlus.
    MSI (s) (50:68) [15:07:09:701]: Note: 2 1: 2262: Complus 3:-2147287038
    Action ended 15:07:09: UnregisterComPlus. Returns the value 1.
    MSI (s) (50:68) [15:07:09:701]: action driving: SelfUnregModules
    Action 15:07:09: SelfUnregModules. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: SelfUnregModules.
    MSI (s) (50:68) [15:07:09:701]: Note: 2 1: 2262: SelfReg 3:-2147287038
    Action ended 15:07:09: SelfUnregModules. Returns the value 1.
    MSI (s) (50:68) [15:07:09:701]: action driving: UnregisterTypeLibraries
    Action 15:07:09: UnregisterTypeLibraries. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: UnregisterTypeLibraries.
    Action ended 15:07:09: UnregisterTypeLibraries. Returns the value 1.
    MSI (s) (50:68) [15:07:09:716]: action driving: RemoveODBC
    Action 15:07:09: RemoveODBC. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RemoveODBC.
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: ODBCDataSource 3:-2147287038
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: ODBCDataSource 3:-2147287038
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: ODBCTranslator 3:-2147287038
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: ODBCTranslator 3:-2147287038
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: ODBCDriver 3:-2147287038
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: ODBCDriver 3:-2147287038
    MSI (s) (50:68) [15:07:09:716]: Note: 1: 2711 2: ODBCDriverManager
    1: {\FinalUIFont}[PROGRESS_PROCESSED_TXT]
    MSI (s) (50:68) [15:07:09:716]: Note: 1: 2711 2: ODBCDriverManager64
    Action ended 15:07:09: RemoveODBC. Returns the value 1.
    MSI (s) (50:68) [15:07:09:716]: action driving: UnregisterFonts
    Action 15:07:09: UnregisterFonts. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: UnregisterFonts.
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: fonts 3:-2147287038
    Action ended 15:07:09: UnregisterFonts. Returns the value 1.
    MSI (s) (50:68) [15:07:09:716]: action driving: RemoveRegistryValues
    Action 15:07:09: RemoveRegistryValues. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RemoveRegistryValues.
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: RemoveRegistry 3:-2147287038
    Action ended 15:07:09: RemoveRegistryValues. Returns the value 1.
    MSI (s) (50:68) [15:07:09:716]: action driving: UnregisterClassInfo
    Action 15:07:09: UnregisterClassInfo. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: UnregisterClassInfo.
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: class 3:-2147287038
    Action ended 15:07:09: UnregisterClassInfo. Returns the value 1.
    MSI (s) (50:68) [15:07:09:716]: action driving: UnregisterExtensionInfo
    Action 15:07:09: UnregisterExtensionInfo. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: UnregisterExtensionInfo.
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: Extension 3:-2147287038
    Action ended 15:07:09: UnregisterExtensionInfo. Returns the value 1.
    MSI (s) (50:68) [15:07:09:716]: action driving: UnregisterProgIdInfo
    Action 15:07:09: UnregisterProgIdInfo. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: UnregisterProgIdInfo.
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: ProgId 3:-2147287038
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: class 3:-2147287038
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: ProgId 3:-2147287038
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: Extension 3:-2147287038
    Action ended 15:07:09: UnregisterProgIdInfo. Returns the value 1.
    MSI (s) (50:68) [15:07:09:716]: action driving: UnregisterMIMEInfo
    Action 15:07:09: UnregisterMIMEInfo. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: UnregisterMIMEInfo.
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: MIME 3:-2147287038
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: Extension 3:-2147287038
    Action ended 15:07:09: UnregisterMIMEInfo. Returns the value 1.
    MSI (s) (50:68) [15:07:09:716]: action driving: RemoveIniValues
    Action 15:07:09: RemoveIniValues. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RemoveIniValues.
    MSI (s) (50:68) [15:07:09:716]: Note: 2 1: 2262: RemoveIniFile 3:-2147287038
    Action ended 15:07:09: RemoveIniValues. Returns the value 1.
    MSI (s) (50:68) [15:07:09:716]: action driving: RemoveShortcuts
    Action 15:07:09: RemoveShortcuts. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RemoveShortcuts.
    Action ended 15:07:09: RemoveShortcuts. Returns the value 1.
    MSI (s) (50:68) [15:07:09:732]: action driving: RemoveEnvironmentStrings
    Action 15:07:09: RemoveEnvironmentStrings. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RemoveEnvironmentStrings.
    MSI (s) (50:68) [15:07:09:732]: Note: 2 1: 2262: environment 3:-2147287038
    Action ended 15:07:09: RemoveEnvironmentStrings. Returns the value 1.
    MSI (s) (50:68) [15:07:09:732]: action driving: RemoveDuplicateFiles
    Action 15:07:09: RemoveDuplicateFiles. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RemoveDuplicateFiles.
    Action ended 15:07:09: RemoveDuplicateFiles. Returns the value 1.
    MSI (s) (50:68) [15:07:09:732]: action driving: RemoveFiles
    Action 15:07:09: RemoveFiles. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RemoveFiles.
    Action ended 15:07:09: RemoveFiles. Returns the value 1.
    MSI (s) (50:68) [15:07:09:732]: action driving: RemoveFolders
    Action 15:07:09: RemoveFolders. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RemoveFolders.
    MSI (s) (50:68) [15:07:09:732]: Note: 2 1: 2262: CreateFolder 3:-2147287038
    MSI (s) (50:68) [15:07:09:732]: Note: 2 1: 2262: LockPermissions 3:-2147287038
    Action ended 15:07:09: RemoveFolders. Returns the value 1.
    MSI (s) (50:68) [15:07:09:732]: action driving: CreateFolders
    Action 15:07:09: CreateFolders. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: CreateFolders.
    MSI (s) (50:68) [15:07:09:732]: Note: 2 1: 2262: CreateFolder 3:-2147287038
    MSI (s) (50:68) [15:07:09:732]: Note: 2 1: 2262: LockPermissions 3:-2147287038
    Action ended 15:07:09: CreateFolders. Returns the value 1.
    MSI (s) (50:68) [15:07:09:732]: action driving: MoveFiles
    Action 15:07:09: MoveFiles. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: MoveFiles.
    Action ended 15:07:09: MoveFiles. Returns the value 1.
    MSI (s) (50:68) [15:07:09:732]: action driving: InstallFiles
    Action 15:07:09: InstallFiles. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: InstallFiles.
    MSI (s) (50:68) [15:07:09:732]: binary patch manager SysEx...
    MSI (s) (50:68) [15:07:09:732]: binary patch manager SysEx...
    MSI (s) (50:68) [15:07:09:732]: Note: 2 1: 2262: LockPermissions 3:-2147287038
    MSI (s) (50:68) [15:07:09:732]: Note: 1: 2205 2:3: MsiPatchOldAssemblyFile
    MSI (s) (50:68) [15:07:09:732]: Note: 1: 2228 2:3: MsiPatchOldAssemblyFile 4: SELECT "MsiPatchOldAssemblyFile". "Assembly_' FROM 'MsiPatchOldAssemblyFile' WHERE 'MsiPatchOldAssemblyFile '. "File_" =?
    MSI (s) (50:68) [15:07:09:732]: Note: 2 1: 2262: error 3:-2147287038
    MSI (s) (50:68) [15:07:09:732]: Note: 1: 2205 2:3: MsiSFCBypass
    MSI (s) (50:68) [15:07:09:732]: Note: 1: 2228 2:3: MsiSFCBypass 4: SELECT "File_" OF "MsiSFCBypass" WHERE "File_" =?
    Action ended 15:07:09: InstallFiles. Returns the value 1.
    MSI (s) (50:68) [15:07:09:732]: action driving: PatchFiles
    Action 15:07:09: PatchFiles. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: PatchFiles.
    MSI (s) (50:68) [15:07:09:732]: Note: 2 1: 2262: error 3:-2147287038
    Action ended 15:07:09: PatchFiles. Returns the value 1.
    MSI (s) (50:68) [15:07:09:732]: action driving: DuplicateFiles
    Action 15:07:09: DuplicateFiles. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: DuplicateFiles.
    Action ended 15:07:09: DuplicateFiles. Returns the value 1.
    MSI (s) (50:68) [15:07:09:732]: action driving: BindImage
    Action 15:07:09: BindImage. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: BindImage.
    MSI (s) (50:68) [15:07:09:732]: Note: 2 1: 2262: BindImage 3:-2147287038
    Action ended 15:07:09: BindImage. Returns the value 1.
    MSI (s) (50:68) [15:07:09:732]: action driving: CreateShortcuts
    Action 15:07:09: CreateShortcuts. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: CreateShortcuts.
    MSI (s) (50:68) [15:07:09:732]: Note: 2 1: 2262: icon 3:-2147287038
    MSI (s) (50:68) [15:07:09:732]: Note: 1: 2235 2:  3: DisplayResourceDLL 4: SELECT  `Shortcut`,`Name`, `FileName`, `Component`.`Directory_`, `Arguments`, `WkDir`, `Icon_`, `IconIndex`, `Hotkey`, `ShowCmd`, `Shortcut`.`Description`, `Shortcut`.`Directory_`, `Component`.`RuntimeFlags`, `Component`.`Action`, `Target`, `ComponentId`, `Feature`.`Action`, `Component`.`Installed`, `DisplayResourceDLL`, `DisplayResourceId`, `DescriptionResourceDLL`, `DescriptionResourceId` From `Shortcut`, `Feature`, `Component`, `File` WHERE `Target` = `Feature` AND `Shortcut`.`Component_` = `Component` AND `Component`.`KeyPath` = `File`.`File` AND ((`Feature`.`Action` = 1 OR `Feature`.`Action` = 2)  OR (`Feature`.`Action` = 4 AND `Feature`.`Installed` = 0) OR (`Feature`.`Action` = 3 AND (`Feature`.` Installed ' = 1 OR "star." "Installed" = 2 OR "star." "Installed" = 4)) OR ("Feature". 'Action' = NULL AND ("Component". 'Action' = 1 OR 'Component '. 'Action' = 2) AND ("Feature". 'Installed' = 1 OR 'Star '. "Installed" = 2 OR "star." "Installed" = 4)))
    MSI (s) (50:68) [15:07:09:732]: Note: 1: 2205 2:3: MsiShortcutProperty
    MSI (s) (50:68) [15:07:09:732]: Note: 1: 2235 2:3: DisplayResourceDLL 4: SELECT 'Shortened', 'Name', 'Target', null, 'Arguments', 'WkDir', 'Icon_', 'IconIndex', 'Shortened', 'ShowCmd', 'shortcut '. 'Description', 'shortcut '. "Directory_', 'component '. "RuntimeFlags", null, null, null, null, null, 'DisplayResourceDLL', 'DisplayResourceId', 'DescriptionResourceDLL', 'DescriptionResourceId' of 'Shortened', 'Component' WHERE "shortcut". "Component_" = "Component" AND ("Component". 'Action' = 1 OR 'Component '. 'Action' = 2)
    MSI (s) (50:68) [15:07:09:732]: Note: 1: 2205 2:3: MsiShortcutProperty
    Action ended 15:07:09: CreateShortcuts. Returns the value 1.
    MSI (s) (50:68) [15:07:09:732]: action driving: RegisterClassInfo
    Action 15:07:09: RegisterClassInfo. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RegisterClassInfo.
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: class 3:-2147287038
    Action ended 15:07:09: RegisterClassInfo. Returns the value 1.
    MSI (s) (50:68) [15:07:09:747]: action driving: RegisterExtensionInfo
    Action 15:07:09: RegisterExtensionInfo. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RegisterExtensionInfo.
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: Extension 3:-2147287038
    Action ended 15:07:09: RegisterExtensionInfo. Returns the value 1.
    MSI (s) (50:68) [15:07:09:747]: action driving: RegisterProgIdInfo
    Action 15:07:09: RegisterProgIdInfo. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RegisterProgIdInfo.
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: ProgId 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: class 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: ProgId 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: Extension 3:-2147287038
    Action ended 15:07:09: RegisterProgIdInfo. Returns the value 1.
    MSI (s) (50:68) [15:07:09:747]: action driving: RegisterMIMEInfo
    Action 15:07:09: RegisterMIMEInfo. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RegisterMIMEInfo.
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: MIME 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: Extension 3:-2147287038
    Action ended 15:07:09: RegisterMIMEInfo. Returns the value 1.
    MSI (s) (50:68) [15:07:09:747]: action driving: WriteRegistryValues
    Action 15:07:09: WriteRegistryValues. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: WriteRegistryValues.
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: LockPermissions 3:-2147287038
    1: {\FinalUIFont}[PROGRESS_PROCESSED_TXT]
    Action ended 15:07:09: WriteRegistryValues. Returns the value 1.
    MSI (s) (50:68) [15:07:09:747]: action driving: WriteIniValues
    Action 15:07:09: WriteIniValues. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: WriteIniValues.
    Action ended 15:07:09: WriteIniValues. Returns the value 1.
    MSI (s) (50:68) [15:07:09:747]: action driving: WriteEnvironmentStrings
    Action 15:07:09: WriteEnvironmentStrings. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: WriteEnvironmentStrings.
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: environment 3:-2147287038
    Action ended 15:07:09: WriteEnvironmentStrings. Returns the value 1.
    MSI (s) (50:68) [15:07:09:747]: action driving: RegisterFonts
    Action 15:07:09: RegisterFonts. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RegisterFonts.
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: fonts 3:-2147287038
    Action ended 15:07:09: RegisterFonts. Returns the value 1.
    MSI (s) (50:68) [15:07:09:747]: action driving: InstallODBC
    Action 15:07:09: InstallODBC. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: InstallODBC.
    MSI (s) (50:68) [15:07:09:747]: Note: 1: 2711 2: ODBCDriverManager
    MSI (s) (50:68) [15:07:09:747]: Note: 1: 2711 2: ODBCDriverManager64
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: ODBCDriver 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: ODBCAttribute 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: ODBCDriver 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: ODBCAttribute 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: ODBCTranslator 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: ODBCTranslator 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: ODBCDataSource 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: ODBCSourceAttribute 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: ODBCDataSource 3:-2147287038
    MSI (s) (50:68) [15:07:09:747]: Note: 2 1: 2262: ODBCSourceAttribute 3:-2147287038
    Action ended 15:07:09: InstallODBC. Returns a value of 0.
    MSI (s) (50:68) [15:07:09:747]: action driving: RegisterTypeLibraries
    Action 15:07:09: RegisterTypeLibraries. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RegisterTypeLibraries.
    Action ended 15:07:09: RegisterTypeLibraries. Returns the value 1.
    MSI (s) (50:68) [15:07:09:747]: action driving: SelfRegModules
    Action 15:07:09: SelfRegModules. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: SelfRegModules.
    MSI (s) (50:68) [15:07:09:763]: Note: 2 1: 2262: SelfReg 3:-2147287038
    Action ended 15:07:09: SelfRegModules. Returns the value 1.
    MSI (s) (50:68) [15:07:09:763]: action driving: RegisterComPlus
    Action 15:07:09: RegisterComPlus. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RegisterComPlus.
    MSI (s) (50:68) [15:07:09:763]: Note: 2 1: 2262: Complus 3:-2147287038
    Action ended 15:07:09: RegisterComPlus. Returns the value 1.
    MSI (s) (50:68) [15:07:09:763]: action driving: InstallServices
    Action 15:07:09: InstallServices. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: InstallServices.
    MSI (s) (50:68) [15:07:09:763]: Note: 2 1: 2262: LockPermissions 3:-2147287038
    MSI (s) (50:68) [15:07:09:763]: Note: 2 1: 2262: ServiceInstall 3:-2147287038
    Action ended 15:07:09: InstallServices. Returns the value 1.
    MSI (s) (50:68) [15:07:09:763]: action driving: StartServices
    Action 15:07:09: StartServices. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: StartServices.
    MSI (s) (50:68) [15:07:09:763]: Note: 2 1: 2262: ServiceControl 3:-2147287038
    Action ended 15:07:09: StartServices. Returns the value 1.
    MSI (s) (50:68) [15:07:09:763]: action driving: PublishComponents
    Action 15:07:09: PublishComponents. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: PublishComponents.
    MSI (s) (50:68) [15:07:09:763]: Note: 2 1: 2262: PublishComponent 3:-2147287038
    Action ended 15:07:09: PublishComponents. Returns the value 1.
    MSI (s) (50:68) [15:07:09:763]: action driving: MsiPublishAssemblies
    Action 15:07:09: MsiPublishAssemblies. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: MsiPublishAssemblies.
    Action ended 15:07:09: MsiPublishAssemblies. Returns the value 1.
    MSI (s) (50:68) [15:07:09:763]: action driving: InstallExecute
    Action 15:07:09: InstallExecute. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: InstallExecute.
    MSI (s) (50:68) [15:07:09:763]: running Script: C:\Windows\Installer\MSIFC2.tmp
    MSI (s) (50:68) [15:07:09:763]: PROPERTY CHANGE: adding UpdateStarted property. Its value is '1 '.
    MSI (s) (50:68) [15:07:09:763]: policy value 'DisableRollback' Machine is 0
    MSI (s) (50:68) [15:07:09:763]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3:2
    MSI (s) (50:68) [15:07:09:779]: op of execution: header (Signature = 1397708873, Version = 500, Timestamp = 1087207653 LangId = 1033, platform = 0, Scrip tType = 1, ScriptMajorVersion = 21, ScriptMinorVersion = 4, ScriptAttributes = 0)
    MSI (s) (50:68) [15:07:09:779]: op of execution: ProductInfo (ProductKey = {55D13F49-FCB8-4892-8266-05D373FCAA61}, ProductName = Microsoft fix 50381, PackageName = MicrosoftFixit50381.msi, Language is 1033, Version = 33619971, Assignment = 0, oleteArg = 0 Obs, PackageCode is {1C7C3009-013E-4A16-9A0F-0000FB80A613}, InstanceType = 0, LUASettin g = 0, RemoteURTInstalls = 0, ProductDeploymentFlags = 3)
    MSI (s) (50:68) [15:07:09:779]: SHELL32::SHGetFolderPath returned: C:\Users\j\AppData\Roaming
    MSI (s) (50:68) [15:07:09:779]: op to run: DialogInfo (Type = 0, Argument = 1033)
    MSI (s) (50:68) [15:07:09:779]: op to run: DialogInfo (Type = 1, Argument = Microsoft Fix it 50381)
    MSI (s) (50:68) [15:07:09:779]: op to run: RollbackInfo (= RollbackDescription, RollbackAction = Rollback action to restore:, RollbackTemplate = [1], CleanupAction is RollbackCleanup, CleanupDescription = [ProgressUI HeaderText],)
    MSI (s) (50:68) [15:07:09:779]: op of execution: SetBaseline(Baseline=0,)
    MSI (s) (50:68) [15:07:09:779]: op of execution: SetBaseline(Baseline=1,)
    MSI (s) (50:68) [15:07:09:779]: op of execution: ActionStart (Name = ProcessComponents, Description = {\FinalUIFont} [PROGRESS_PROCESSED_TXT]),
    Action 15:07:09: ProcessComponents. {\FinalUIFont} This Microsoft Fix it is being processed.
    MSI (s) (50:68) [15:07:09:779]: op of execution: ProgressTotal(Total=1,Type=1,ByteEquivalent=24000)
    MSI (s) (50:68) [15:07:09:779]: op to run: ComponentRegister (ComponentId = {4C231858-2B39-11D3-8E0D-00C04F6837D0}, = - 7, State disc = 1, aredDllRefCount = 0, = 0 BinaryType HS)
    1: {55D13F49-FCB8-4892-8266-05D373FCAA61} 2: {4C231858-2B39-11D3-8E0D-00C04F6837D0}
    MSI (s) (50:68) [15:07:09:779]: op of execution: ActionStart (Name = RemoveODBC, Description = {\FinalUIFont} [PROGRESS_PROCESSED_TXT]),
    Action 15:07:09: RemoveODBC. {\FinalUIFont} This Microsoft Fix it is being processed.
    MSI (s) (50:68) [15:07:09:825]: op of execution: ODBCDriverManager(,BinaryType=0)
    MSI (s) (50:68) [15:07:09:825]: op of execution: ODBCDriverManager(,BinaryType=1)
    MSI (s) (50:68) [15:07:09:825]: op of execution: ActionStart (Name = WriteRegistryValues, Description = {\FinalUIFont} [PROGRESS_PROCESSED_TXT]),
    Action 15:07:09: WriteRegistryValues. {\FinalUIFont} This Microsoft Fix it is being processed.
    MSI (s) (50:68) [15:07:09:825]: op of execution: ProgressTotal(Total=2,Type=1,ByteEquivalent=13200)
    MSI (s) (50:68) [15:07:09:825]: run op: RegOpenKey (Root =-2147483646, Key = Software\Policies\Microsoft\Windows\Installer, BinaryType = 0),
    MSI (s) (50:68) [15:07:09:825]: op to run: RegAddValue (Name = Logging),
    1: \Software\Policies\Microsoft\Windows\Installer 2: logging
    MSI (s) (50:68) [15:07:09:825]: run op: RegOpenKey (Root =-2147483646, Key = Software\Policies\Microsoft\Windows\Installer, BinaryType = 1),
    MSI (s) (50:68) [15:07:09:825]: op to run: RegAddValue (Name = Logging),
    1: \Software\Policies\Microsoft\Windows\Installer 2: logging
    MSI (s) (50:68) [15:07:09:825]: op of execution: End (Checksum = 0, ProgressTotalHDWord = 0, ProgressTotalLDWord = 50400)
    Action ended 15:07:09: InstallExecute. Returns the value 1.
    MSI (s) (50:68) [15:07:09:825]: action driving: RemoveExistingProducts
    Action 15:07:09: RemoveExistingProducts. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: RemoveExistingProducts.
    MSI (s) (50:68) [15:07:09:825]: Note: 2 1: 2262: error 3:-2147287038
    MSI (s) (50:68) [15:07:09:825]: Note: 2 1: 2262: error 3:-2147287038
    MSI (s) (50:68) [15:07:09:825]: Note: 2 1: 2262: error 3:-2147287038
    MSI (s) (50:68) [15:07:09:825]: Note: 2 1: 2262: error 3:-2147287038
    Action ended 15:07:09: RemoveExistingProducts. Returns the value 1.
    MSI (s) (50:68) [15:07:09:825]: action driving: Milestone_InstallFin291
    Action 15:07:09: Milestone_InstallFin291.
    Action start at 15:07:09: Milestone_InstallFin291.
    MSI (s) (50:68) [15:07:09:825]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'Milestone_InstallFin291. '
    MSI (s) (50:68) [15:07:09:825]: PROPERTY CHANGE: milestone to edit property. Its current value is 'DIRCA_TARGETDIR '. Its new value: "InstallFinalize.
    Action ended 15:07:09: Milestone_InstallFin291. Returns the value 1.
    MSI (s) (50:68) [15:07:09:825]: conduct of action: InstallFinalize
    Action 15:07:09: InstallFinalize. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    Action start at 15:07:09: InstallFinalize.
    MSI (s) (50:68) [15:07:09:825]: strategy user 'DisableRollback' is 0
    MSI (s) (50:68) [15:07:09:825]: policy value 'DisableRollback' Machine is 0
    Action 15:07:09: RollbackCleanup. {\FinalUIFont} [PROGRESS_PROCESSED_TXT]
    MSI (s) (50:68) [15:07:09:841]: SRSetRestorePoint API call. dwRestorePtType: 0, dwEventType: 103, llSequenceNumber: szDescription 111,:
    MSI (s) (50:68) [15:07:09:841]: the SRSetRestorePoint API call was successful. Referred State: 0.
    MSI (s) (50:68) [15:07:09:841]: unlock Server
    MSI (s) (50:68) [15:07:10:091]: PROPERTY CHANGE: deleting UpdateStarted property. Its current value is '1 '.
    Action ended 15:07:10: InstallFinalize. Returns the value 1.
    MSI (s) (50:68) [15:07:10:091]: action driving: SendSuccessLogEntry
    Action 15:07:10: SendSuccessLogEntry.
    Action start at 15:07:10: SendSuccessLogEntry.
    MSI (s) (50:68) [15:07:10:091]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'SendSuccessLogEntry. '
    MSI (s) (50:68) [15:07:10:106]: Creating MSIHANDLE (2) of type 790542 for thread 2408
    Action ended 15:07:10: INSTALL. Returns the value 1.
    MSI (s) (C 50:2) [15:07:10:106]: call for a custom action to distance. DLL: C:\Windows\Installer\MSI114B.tmp, point of entry: SendSuccessLogEntry
    MSI (s) (50:90) [15:07:10:106]: generation random cookie.
    MSI (s) (50:90) [15:07:10:106]: created server custom with PID 660 (0 x 294) Action.
    MSI (s) (50:D4) [15:07:10:137]: running as a service.
    MSI (s) (50:D4) [15:07:10:137]: Hello, I am your 32-bit custom action Server Impersonated.
    Action ended 15:07:15: SendSuccessLogEntry. Returns a value of 0.
    MSI (s) (50:68) [15:07:15:956]: closing MSIHANDLE (2) of type 790542 for thread 2408
    Property (S): UpgradeCode = {C39BF33C-3152-40E3-83CD-2F1479FC8A72}
    Property (S): TARGETDIR = C:\Program Files (x 86) \Microsoft\Microsoft fix 50381\
    Property (S): SourceDir = C:\Users\j\Desktop\
    Property (S): DesktopFolder = C:\Users\j\Desktop\
    Property (S): ProgramMenuFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\
    Property (S): ProductName = Microsoft Fix it 50381
    Property (S): PROGRESS_REMOVE_TXT = this Microsoft Fix it is removed.
    Property (S): ProductCode = {55D13F49-FCB8-4892-8266-05D373FCAA61}
    Property (S): FIXIT_DOESNT_APPLY_TXT_OTHER = this Microsoft Fix it does not apply to your system.
    Property (S): ProductVersion = 2.1.3.2
    Property (S): Manufacturer = Microsoft
    Property (S): ARPCONTACT = Microsoft
    Property (S): ProductLanguage = 1033
    Property (S): SecureCustomProperties = NEWERPRODUCTFOUND
    Property (S): PROGRESS_PLEASE_WAIT_TXT = please wait...
    Property (S): RedirectedDllSupport = 2
    Property (S): VersionNT = 601
    Property (S): PROGRESS_RESTORE_TXT = creating a restore point...
    Property (S): VSDNETURLMSG = this installation program requires the .NET Framework version [1].  If please install the .NET Framework and run this Setup program again.  The .NET Framework can come from the web.  You want to do it now?
    Property (S): VSDIISMSG = this Setup requires Internet Information Server 4.0 or later and Windows NT 4.0, Windows 2000 or above.  This configuration cannot be installed on Windows 95, Windows 98, or Windows Millennium Edition.  If please install Internet Information Server and run this installer again.
    Property (S): VSDUIANDADVERTISED = this application advertising will not be installed because it might be dangerous. Contact your administrator to change the option to install the package of basic user interface.
    Property (S): VSDNETMSG = this installation program requires the .NET Framework version [1].  If please install the .NET Framework and run this Setup program again.
    Property (S): VSDINVALIDURLMSG = The specified path '[2]' is not available. The Internet Information Server may not be running or the path exists and is redirected to another machine. Please check the status of this virtual directory in Internet Services Manager.
    Property (S): VSDVERSIONMSG = unable to install because a newer version of this product is already installed.
    Property (S): ErrorDialog = ErrorDialog
    Property (S): SFF_UpFldrBtn = UpFldrBtn
    Property (S): SFF_NewFldrBtn = NewFldrBtn
    Property (S): PROGRESS_PROCESSED_TXT = this Microsoft Fix it is being processed.
    Property (S): AdminMaintenanceForm_Action = repair
    Property (S): AdminEulaForm_Property = no
    Property (S): DefaultUIFont = VsdDefaultUIFont.524F4245_5254_5341_4C45_534153783400
    Property (S): MaintenanceForm_Action = repair
    Property (S): FIXIT_DOESNT_APPLY_TXT = this Microsoft Fix it does not apply to your operating system or version of the application.
    Property (S): FIXIT_REQ_ADMIN_TXT = this Microsoft Fix it requires administrative rights to install.
    Property (S): The privilege = 1
    Property (S): FixitID = 50381
    Property (S): BACK_TXT = < & return
    Property (S): NEXT_TXT = & next >
    Property (S): CANCEL_TXT = cancel
    Property (S): PRODUCT_BANNER_TXT = Microsoft Fix it
    Property (S): ProgressUIHeaderText = {\FinalUIFont}[PROGRESS_PROCESSED_TXT]
    Property (S): RestorePointHeaderText = {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Property (S): PRIVACY_BTN_TXT = & privacy policy
    Property (S): CLOSE_TXT = close
    Property (S): EULA_I_AGREE_TXT = I & agree
    Property (S): EULA_DO_NOT_AGREE_TXT = I & do not agree
    Property (S): EULA_LICENSE_FULL_TXT = please take a moment to read the terms of the license below. If you accept the terms, click the "I accept", then "Next" to start this Microsoft Fix it solution. Otherwise click "Cancel".
    Property (S): ABOUT_TXT = by the way
    Property (S): EXPLORER = explorer.exe
    Property (S): FINALBODY_INTERRUPTEDTXT = the installer was interrupted before this Microsoft Fix it could be installed. You must restart the installer to try again. Click "Close" to exit.
    Property (S): FINALBODY_REMOVE_INTERRUPTEDTXT = the installer was interrupted before this Microsoft Fix it could be deleted. You must restart the installer to try again. Click "Close" to exit.
    Property (S): FINALBODY_PROCESSEDTXT = this Microsoft Fix, he was treated.
    Property (S): FINALBODY_BLOGTXT = click here to read more about Microsoft fix:
    Property (S): FINALBODY_FAILEDTXT = this Microsoft Fix it could not process.
    Property (S): FINALBODY_STOPTXT = this Microsoft Fix it stopped
    Property (S): FINALBODY_QUITTXT = Microsoft's difficulty it is not yet complete.  Are you sure you want to leave?
    Property (S): FINALBODY_REMOVETXT = this Microsoft Fix, it was deleted. Click "Close" to exit.
    Property (S): FINALBODY_SURVEY_TXT = click for us what you think:
    Property (S): FINALBODY_GET_ONLINE_HELP_TXT = click here to get help online now:
    Property (S): YES_TXT = & Yes
    Property (S): NO_TXT = & no
    Property (S): EXIT_INSTALL_TXT = E & xit Installation
    Property (S): CONTINUE_TXT = & continue
    Property (S): OK_TXT = OK
    Property (S): TRYAGAIN_TXT = & try again
    Property (S): FINALBODY_EMAILTXT = click to send the Microsoft Fix team computer e-mail:
    Property (S): APP_MUST_BE_CLOSED_INSTALL_TXT = please close applications and then click on 'Retry '.
    Property (S): APP_MUST_BE_CLOSED_REMOVE_TXT = the following applications use files that must remove the installation program. You can close applications and click 'Retry', or click 'Continue' so that the Installer continues the installation and replace these files to restart your system.
    Property (S): EXIT_TXT = & quit
    Property (S): SERVICE_PACK_BLOCK_TXT = a Service Pack or update of Windows is blocking this Microsoft Fix it.
    Property (S): SAME_SETTINGS_NO_CHANGE_TXT = the computer settings already match this Microsoft Fix it and no changes have been made.
    Property (S): DOWNLOAD_NEEDED_FIRST_TXT = this Microsoft Fix it does not apply because the computer requires a download of Microsoft or Microsoft Update.
    Property (S): IMPORTANT_NOTE_TXT = Important note on this Microsoft Fix
    Property (S): RESET_IE_SETTINGS_INFO_BODY_TXT = click the "Reset" button after clicking "next".
    Property (S): REINSTALL_CD_SW_TXT = after you run this Microsoft Fix it, maybe some programs are not able to use your CD or DVD drive until you reinstall these programs.
    Property (S): SOFTWARE_EXAMPLES_HEADER_TXT = some examples of programs that might be affected by this Microsoft Fix it:
    Property (S): SOFTWARE_EXAMPLES_TXT = software Apple iTunes
    Software Nero Nero Inc.
    Roxio Creator of Sonic Solutions software
    Microsoft Zune software
    Property (S): Milestone = InstallFinalize
    Property (S): EULAACCEPTED = 1
    Property (S): MsiLogFileLocation = C:\Users\j\AppData\Local\Temp\MSI3e2c0.LOG
    Property (S): PackageCode = {1C7C3009-013E-4A16-9A0F-0000FB80A613}
    Property (S): ProductState = - 1
    Property (S): PackagecodeChanging = 1
    Property (S): CURRENTDIRECTORY = C:\Users\j\Desktop
    Property (S): CLIENTUILEVEL = 0
    Property (S): CLIENTPROCESSID = 1968
    Property (S): Username = j
    Property (S): VersionDatabase = 200
    Property (S): ACTION = INSTALL
    Property (S): EXECUTEACTION = INSTALL
    Property (S): ROOTDRIVE = C:\
    Property (S): INSTALLLEVEL = 1
    Property (S): SECONDSEQUENCE = 1
    Property (S): ADDLOCAL = DefaultFeature
    Property (S): VersionMsi = 5.00
    Property (S): VersionNT64 = 601
    Property (S): WindowsBuild = 7601
    Property (S): ServicePackLevel = 1
    Property (S): ServicePackLevelMinor = 0
    Property (S): MsiNTProductType = 1
    Property (S): MsiNTSuitePersonal = 1
    Property (S): WindowsFolder = C:\Windows\
    Property (S): WindowsVolume = C:\
    Property (S): System64Folder = C:\Windows\system32\
    Property (S): SystemFolder = C:\Windows\SysWOW64\
    Property (S): RemoteAdminTS = 1
    Property (S): TempFolder = C:\Users\j\AppData\Local\Temp\
    Property (S): ProgramFilesFolder = C:\Program Files (x 86).
    Property (S): CommonFilesFolder directory = C:\Program Files (x 86) \Common Files\
    Property (S): ProgramFiles64Folder = C:\Program Files\
    Property (S): CommonFiles64Folder = C:\Program Files\ Files\Fichiers
    Property (S): AppDataFolder = C:\Users\j\AppData\Roaming\
    Property (S): FavoritesFolder = C:\Users\j\Favorites\
    Property (S): NetHoodFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
    Property (S): PersonalFolder = C:\Users\j\Contacts\Documents\Documents\
    Property (S): PrintHoodFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
    Property (S): RecentFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Recent\
    Property (S): SendToFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\SendTo\
    Property (S): TemplateFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Templates\
    Property (S): CommonAppDataFolder = C:\ProgramData\
    Property (S): LocalAppDataFolder = C:\Users\j\AppData\Local\
    Property (S): MyPicturesFolder = C:\Users\j\Pictures\
    Property (S): AdminToolsFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Start administration Tools\
    Property (S): StartupFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Start demarrer\programmes\demarrage\
    Property (S): StartMenuFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Start Menu\
    Property (S): Font = C:\Windows\Fonts\
    Property (S): GPTSupport = 1
    Property (S): OLEAdvtSupport = 1
    Property (S): ShellAdvtSupport = 1
    Property (S): MsiAMD64 = 6
    Property (S): Msix64 = 6
    Property (S): Intel = 6
    Property (S): PhysicalMemory = 8157
    Property (S): VirtualMemory = 13743
    Property (S): AdminUser = 1
    Property (S): MsiTrueAdminUser = 1
    Property (S): LogonUser = j
    Property (S): UserSID = S-1-5-21-1139411949-3217698015-1990462012-1000
    Property (S): UserLanguageID = 1033
    Property (S): ComputerName = J - PC
    Property (S): SystemLanguageID = 1033
    Property (S): ScreenX = 1024
    Property (S): ScreenY = 768
    Property (S): CaptionHeight = 22
    Property (S): BorderTop = 1
    Property (S): BorderSide = 1
    Property (S): TextHeight = 16
    Property (S): TextInternalLeading = 3
    Property (S): ColorBits = 32
    Property (S): TTCSupport = 1
    Property (S): Time = 15:07:15
    Property (S): Date = 13/06/2012
    Property (S): MsiNetAssemblySupport = 4.0.30319.1
    Property (S): MsiWin32AssemblySupport = 6.1.7601.17514
    Property (S): MsiRunningElevated = 1
    Property (S): basis of DATA = C:\Windows\Installer\142aa4.msi
    Property (S): OriginalDatabase = C:\Users\j\Desktop\MicrosoftFixit50381.msi
    Property (S): UILevel = 5
    Property (S): Preselected = 1
    Property (S): CostingComplete = 1
    Property (S): OutOfDiskSpace = 0
    Property (S): OutOfNoRbDiskSpace = 0
    Property (S): PrimaryVolumeSpaceAvailable = 0
    Property (S): PrimaryVolumeSpaceRequired = 0
    Property (S): PrimaryVolumeSpaceRemaining = 0
    Property (S): SOURCEDIR = C:\Users\j\Desktop\
    Property (S): SourcedirProduct = {55D13F49-FCB8-4892-8266-05D373FCAA61}
    MSI (s) (50:68) [15:07:15:972]: MainEngineThread returns 0
    MSI (s) (50: 6 C) [15:07:15:987]: RESTART MANAGER: closed Session.
    MSI (s) (50: 6 C) [15:07:15:987]: strategy user 'DisableRollback' is 0
    MSI (s) (50: 6 C) [15:07:15:987]: policy value 'DisableRollback' Machine is 0
    MSI (s) (50: 6 C) [15:07:15:987]: meter is incremented to disable the stop. Counter after increment: 0
    MSI (s) (50: 6 C) [15:07:15:987]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3:2
    MSI (s) (50: 6 C) [15:07:15:987]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3:2
    MSI (s) (50: 6 C) [15:07:15:987]: disable the stop against the decrement. If counter > = 0, will be denied the stop.  Counter after decrement:-1
    MSI (s) (50: 6 C) [15:07:15:987]: restoration of the environment variables
    MSI (s) (50: 6 C) [15:07:15:987]: object to destroy RemoteAPI.
    MSI (s) (50:90) [15:07:15:987]: end of thread Custom Action Manager.
    MSI (c) (B0:AC) [15:07:15:987]: return of the server. Return value: 0
    MSI (c) (B0:AC) [15:07:15:987]: disable the stop against the decrement. If counter > = 0, will be denied the stop.  Counter after decrement:-1
    MSI (c) (B0:AC) [15:07:15:987]: PROPERTY CHANGE: deleting SECONDSEQUENCE property. Its current value is '1 '.
    Action ended 15:07:15: ExecuteAction. Returns the value 1.
    MSI (c) (B0:AC) [15:07:15:987]: action driving: FinishedForm
    Action 15:07:15: FinishedForm.
    Action start at 15:07:15: FinishedForm.
    MSI (c) (B0:AC) [15:07:15:987]: Note: 1: 2235 2:3: ExtendedType 4: SELECT 'Action', 'Type', 'Source', 'Target', NULL, 'ExtendedType' FROM 'CustomAction' WHERE 'Action' = 'FinishedForm. '
    MSI (c) (B0:68) [15:07:15:987]: Note: 2 1: 2262: error 3:-2147287038
    DEBUG: Error 2826: control in the dialog box FinishedForm Line1 extends beyond the boundaries of the dialog box to the right by 3 pixels
    Setup has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: FinishedForm, line 1, to the right
    MSI (c) (B0:68) [15:07:15:987]: Note: 2 1: 2262: error 3:-2147287038
    DEBUG: Error 2826: control in the dialog box FinishedForm Line2 extends beyond the boundaries of the dialog box to the right by 3 pixels
    Setup has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: FinishedForm, line 2, on the right
    MSI (c) (B0:68) [15:07:15:987]: Note: 2 1: 2262: error 3:-2147287038
    DEBUG: Error 2826: control in the dialog box FinishedForm BannerBmp extends beyond the boundaries of the dialog to the right by 3 pixels
    Setup has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: FinishedForm, BannerBmp, to the right
    MSI (c) (B0:68) [15:07:15:987]: Note: 2 1: 2262: error 3:-2147287038
    DEBUG: Error 2826: UpdateText command on dialog FinishedForm extends beyond the boundaries of the dialog on the bottom by 466 pixels
    Setup has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: FinishedForm, UpdateText, the substantive
    Action 15:07:15: FinishedForm. Dialog created
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: DuplicateFile 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: ReserveCost 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: TypeLib 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: class 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: Extension 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: class 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: Extension 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: PROPERTY CHANGE: property to change CostingComplete. Its current value is '0'. Its new value: '1'.
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: BindImage 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: ProgId 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: PublishComponent 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: SelfReg 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: Extension 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: fonts 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: class 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 2 1: 2262: icon 3:-2147287038
    MSI (c) (B0:08) [15:07:16:003]: Note: 1: 2727 2:
    Action ended 15:13:48: FinishedForm. Returns the value 1.
    Action ended 15:13:48: INSTALL. Returns the value 1.
    Property (c): UpgradeCode = {C39BF33C-3152-40E3-83CD-2F1479FC8A72}
    Property (c): TARGETDIR = C:\Program Files (x 86) \Microsoft\Microsoft fix 50381\
    Property (c): SourceDir = C:\Users\j\Desktop\
    Property (c): DesktopFolder = C:\Users\j\Desktop\
    Property (c): ProgramMenuFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\
    Property (c): ProductName = Microsoft Fix it 50381
    Property (c): PROGRESS_REMOVE_TXT = this Microsoft Fix it is removed.
    Property (c): ProductCode = {55D13F49-FCB8-4892-8266-05D373FCAA61}
    Property (c): FIXIT_DOESNT_APPLY_TXT_OTHER = this Microsoft Fix it does not apply to your system.
    Property (c): ProductVersion = 2.1.3.2
    Property (c): Manufacturer = Microsoft
    Property (c): ARPCONTACT = Microsoft
    Property (c): ProductLanguage = 1033
    Property (c): SecureCustomProperties = NEWERPRODUCTFOUND
    Property (c): PROGRESS_PLEASE_WAIT_TXT = please wait...
    Property (c): RedirectedDllSupport = 2
    Property (c): VersionNT = 601
    Property (c): PROGRESS_RESTORE_TXT = creating a restore point...
    Property (c): VSDNETURLMSG = this installation program requires the .NET Framework version [1].  If please install the .NET Framework and run this Setup program again.  The .NET Framework can come from the web.  You want to do it now?
    Property (c): VSDIISMSG = this Setup requires Internet Information Server 4.0 or later and Windows NT 4.0, Windows 2000 or above.  This configuration cannot be installed on Windows 95, Windows 98, or Windows Millennium Edition.  If please install Internet Information Server and run this installer again.
    Property (c): VSDUIANDADVERTISED = this application advertising will not be installed because it might be dangerous. Contact your administrator to change the option to install the package of basic user interface.
    Property (c): VSDNETMSG = this installation program requires the .NET Framework version [1].  If please install the .NET Framework and run this Setup program again.
    Property (c): VSDINVALIDURLMSG = The specified path '[2]' is not available. The Internet Information Server may not be running or the path exists and is redirected to another machine. Please check the status of this virtual directory in Internet Services Manager.
    Property (c): VSDVERSIONMSG = unable to install because a newer version of this product is already installed.
    Property (c): ErrorDialog = ErrorDialog
    Property (c): SFF_UpFldrBtn = UpFldrBtn
    Property (c): SFF_NewFldrBtn = NewFldrBtn
    Property (c): PROGRESS_PROCESSED_TXT = this Microsoft Fix it is being processed.
    Property (c): AdminMaintenanceForm_Action = repair
    Property (c): AdminEulaForm_Property = no
    Property (c): DefaultUIFont = VsdDefaultUIFont.524F4245_5254_5341_4C45_534153783400
    Property (c): MaintenanceForm_Action = repair
    Property (c): EulaForm_Property = 1
    Property (c): FIXIT_DOESNT_APPLY_TXT = this Microsoft Fix it does not apply to your operating system or version of the application.
    Property (c): FIXIT_REQ_ADMIN_TXT = this Microsoft Fix it requires administrative rights to install.
    Property (c): The privilege = 1
    Property (c): FixitID = 50381
    Property (c): BACK_TXT = < & return
    Property (c): NEXT_TXT = & next >
    Property (c): CANCEL_TXT = cancel
    Property (c): PRODUCT_BANNER_TXT = Microsoft Fix it
    Property (c): ProgressUIHeaderText = {\FinalUIFont}[PROGRESS_PROCESSED_TXT]
    Property (c): RestorePointHeaderText = {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Property (c): PRIVACY_BTN_TXT = & privacy policy
    Property (c): CLOSE_TXT = close
    Property (c): EULA_I_AGREE_TXT = I & agree
    Property (c): EULA_DO_NOT_AGREE_TXT = I & do not agree
    Property (c): EULA_LICENSE_FULL_TXT = please take a moment to read the terms of the license below. If you accept the terms, click the "I accept", then "Next" to start this Microsoft Fix it solution. Otherwise click "Cancel".
    Property (c): ABOUT_TXT = by the way
    Property (c): EXPLORER = explorer.exe
    Property (c): FINALBODY_INTERRUPTEDTXT = the installer was interrupted before this Microsoft Fix it could be installed. You must restart the installer to try again. Click "Close" to exit.
    Property (c): FINALBODY_REMOVE_INTERRUPTEDTXT = the installer was interrupted before this Microsoft Fix it could be deleted. You must restart the installer to try again. Click "Close" to exit.
    Property (c): FINALBODY_PROCESSEDTXT = this Microsoft Fix, he was treated.
    Property (c): FINALBODY_BLOGTXT = click here to read more about Microsoft fix:
    Property (c): FINALBODY_FAILEDTXT = this Microsoft Fix it could not process.
    Property (c): FINALBODY_STOPTXT = this Microsoft Fix it stopped
    Property (c): FINALBODY_QUITTXT = trouble from Microsoft that is not yet complete.  Are you sure you want to leave?
    Property (c): FINALBODY_REMOVETXT = this Microsoft Fix, it was deleted. Click "Close" to exit.
    Property (c): FINALBODY_SURVEY_TXT = click for us what you think:
    Property (c): FINALBODY_GET_ONLINE_HELP_TXT = click here to get help online now:
    Property (c): YES_TXT = & Yes
    Property (c): NO_TXT = & no
    Property (c): EXIT_INSTALL_TXT = E & xit Installation
    Property (c): CONTINUE_TXT = & continue
    Property (c): OK_TXT = OK
    Property (c): TRYAGAIN_TXT = & try again
    Property (c): FINALBODY_EMAILTXT = click to send the Microsoft Fix team computer e-mail:
    Property (c): APP_MUST_BE_CLOSED_INSTALL_TXT = please close applications and then click on 'Retry '.
    Property (c): APP_MUST_BE_CLOSED_REMOVE_TXT = the following applications use files that must remove the installation program. You can close applications and click 'Retry', or click 'Continue' so that the Installer continues the installation and replace these files to restart your system.
    Property (c): EXIT_TXT = & quit
    Property (c): SERVICE_PACK_BLOCK_TXT = a Service Pack or update of Windows is blocking this Microsoft Fix it.
    Property (c): SAME_SETTINGS_NO_CHANGE_TXT = the computer settings already match this Microsoft Fix it and no changes have been made.
    Property (c): DOWNLOAD_NEEDED_FIRST_TXT = this Microsoft Fix it does not apply because the computer requires a download of Microsoft or Microsoft Update.
    Property (c): IMPORTANT_NOTE_TXT = Important note on this Microsoft Fix
    Property (c): RESET_IE_SETTINGS_INFO_BODY_TXT = click the "Reset" button after clicking "next".
    Property (c): REINSTALL_CD_SW_TXT = after you run this Microsoft Fix it, maybe some programs are not able to use your CD or DVD drive until you reinstall these programs.
    Property (c): SOFTWARE_EXAMPLES_HEADER_TXT = some examples of programs that might be affected by this Microsoft Fix it:
    Property (c): SOFTWARE_EXAMPLES_TXT = software Apple iTunes
    Software Nero Nero Inc.
    Roxio Creator of Sonic Solutions software
    Microsoft Zune software
    Property (c): Milestone = DIRCA_TARGETDIR
    Property (c): EULAACCEPTED = 1
    Property (c): MsiLogFileLocation = C:\Users\j\AppData\Local\Temp\MSI3e2c0.LOG
    Property (c): PackageCode = {1C7C3009-013E-4A16-9A0F-0000FB80A613}
    Property (c): ProductState = - 1
    Property (c): PackagecodeChanging = 1
    Property (c): CURRENTDIRECTORY = C:\Users\j\Desktop
    Property (c): CLIENTUILEVEL = 0
    Property (c): CLIENTPROCESSID = 1968
    Property (c): VersionDatabase = 200
    Property (c): VersionMsi = 5.00
    Property (c): VersionNT64 = 601
    Property (c): WindowsBuild = 7601
    Property (c): ServicePackLevel = 1
    Property (c): ServicePackLevelMinor = 0
    Property (c): MsiNTProductType = 1
    Property (c): MsiNTSuitePersonal = 1
    Property (c): WindowsFolder = C:\Windows\
    Property (c): WindowsVolume = C:\
    Property (c): System64Folder = C:\Windows\system32\
    Property (c): SystemFolder = C:\Windows\SysWOW64\
    Property (c): RemoteAdminTS = 1
    Property (c): TempFolder = C:\Users\j\AppData\Local\Temp\
    Property (c): ProgramFilesFolder = C:\Program Files (x 86).
    Property (c): Directory CommonFilesFolder = C:\Program Files (x 86) \Common Files\
    Property (c): ProgramFiles64Folder = C:\Program Files\
    Property (c): CommonFiles64Folder = C:\Program Files\ Files\Fichiers
    Property (c): AppDataFolder = C:\Users\j\AppData\Roaming\
    Property (c): FavoritesFolder = C:\Users\j\Favorites\
    Property (c): NetHoodFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
    Property (c): PersonalFolder = C:\Users\j\Contacts\Documents\Documents\
    Property (c): PrintHoodFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
    Property (c): RecentFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Recent\
    Property (c): SendToFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\SendTo\
    Property (c): TemplateFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Templates\
    Property (c): CommonAppDataFolder = C:\ProgramData\
    Property (c): LocalAppDataFolder = C:\Users\j\AppData\Local\
    Property (c): MyPicturesFolder = C:\Users\j\Pictures\
    Property (c): AdminToolsFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Start administration Tools\
    Property (c): StartupFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Start demarrer\programmes\demarrage\
    Property (c): StartMenuFolder = C:\Users\j\AppData\Roaming\Microsoft\Windows\Start Menu\
    Property (c): Font = C:\Windows\Fonts\
    Property (c): GPTSupport = 1
    Property (c): OLEAdvtSupport = 1
    Property (c): ShellAdvtSupport = 1
    Property (c): MsiAMD64 = 6
    Property (c): Msix64 = 6
    Property (c): Intel = 6
    Property (c): PhysicalMemory = 8157
    Property (c): VirtualMemory = 13752
    Property (c): AdminUser = 1
    Property (c): MsiTrueAdminUser = 1
    Property (c): LogonUser = j
    Property (c): UserSID = S-1-5-21-1139411949-3217698015-1990462012-1000
    Property (c): UserLanguageID = 1033
    Property (c): ComputerName = J - PC
    Property (c): SystemLanguageID = 1033
    Property (c): ScreenX = 1920
    Property (c): ScreenY = 1080
    Property (c): CaptionHeight = 22
    Property (c): BorderTop = 1
    Property (c): BorderSide = 1
    Property (c): TextHeight = 16
    Property (c): TextInternalLeading = 3
    Property (c): ColorBits = 32
    Property (c): TTCSupport = 1
    Property (c): Time = 15:13:48
    Property (c): Date = 13/06/2012
    Property (c): MsiNetAssemblySupport = 4.0.30319.1
    Property (c): MsiWin32AssemblySupport = 6.1.7601.17514
    Property (c): MsiRunningElevated = 1
    Property (c): USER name = j
    Property (c): basis of DATA = C:\Users\j\Desktop\MicrosoftFixit50381.msi
    Property (c): OriginalDatabase = C:\Users\j\Desktop\MicrosoftFixit50381.msi
    Property (c): SOURCEDIR = C:\Users\j\Desktop\
    Property (c): VersionHandler = 5.00
    Property (c): UILevel = 5
    Property (c): ACTION = INSTALL
    Property (c): EXECUTEACTION = INSTALL
    Property (c): CostingComplete = 1
    Property (c): ROOTDRIVE = C:\
    Property (c): OutOfDiskSpace = 0
    Property (c): OutOfNoRbDiskSpace = 0
    Property (c): PrimaryVolumeSpaceAvailable = 0
    Property (c): PrimaryVolumeSpaceRequired = 0
    Property (c): PrimaryVolumeSpaceRemaining = 0
    Property (c): INSTALLLEVEL = 1
    = Logging stopped: 13/06/2012-15:13:48 =.
    MSI (c) (B0:AC) [15:13:48:558]: Note: 1: 1707
    MSI (c) (B0:AC) [15:13:48:558]: Note: 2 1: 2262: error 3:-2147287038
    MSI (c) (B0:AC) [15:13:48:558]: Note: 2 1: 2262: error 3:-2147287038
    MSI (c) (B0:AC) [15:13:48:558]: product: Microsoft Fix it 50381 - Installation completed successfully.

    MSI (c) (B0:AC) [15:13:48:558]: Windows Installer installed the product. Product name: Microsoft Fix it 50381. Product version: 2.1.3.2. Product language: 1033. Manufacturer: Microsoft. Installation success or error status: 0.

    MSI (c) (B0:AC) [15:13:48:558]: grabbed execution mutex.
    MSI (c) (B0:AC) [15:13:48:558]: cleaning up uninstalled install packages, if any
    MSI (c) (B0:AC) [15:13:48:558]: MainEngineThread returns 0
    = Recording stopped: 13/06/2012-15:13:48 =.

    Thanks for posting logs.  Unfortunately, the newspaper msi that you posted was Microsoft Fixit, not the installer of AIR enforcement.   Microsoft has released a utility that can help to resolve installation problems.  Would you mind giving it a try and let us know how it works for you?  When you run the patch, go through the uninstall process and trying to remove Adobe AIR on your system.  Once finished, download the latest version of AIR and install again.

    Microsoft install and uninstall the fix it

    If you're still having problems, you need to consult the journal of AIR MSI for further investigation.

    Thank you

    Chris

Maybe you are looking for

  • Create a theme that, when selected, open multiple slides

    I can create a theme using Keynote 6.6.2-no problem. I can record on the theme selector, no problem. However, I would like to create a theme, which, when it is selected in the theme selector, open several slides prepared in advance, not only the titl

  • After the upgrade to El Capitan having problems with the application Mail

    Hello: Recently upgraded my Mac mini to El Capitan. Before the upgrade (from Mountain Lion), I got Thunderbird mail application works perfectly access my GMail account and my Hotmail account. Now, I have no problem with Hotmail and Gmail keeps asking

  • Static route / network Configuration?

    I have a cable modem that connects via Ethernet (eth0) of a configuration for NAT and Firewall Linux box.  Another card (eth1) connects to a switch for my cable network (192.168.1.1/24).  I added a third adapter (eth2 - 192.168.2.1/24) which is conne

  • Retrieve Hotmail password

    Original title: see below Windows Live, I need e-mail address:-* address email is removed from the privacy * job once again that she always says in that ' I have'nt typed the correct password. " Can you please sort this problem on for me that there a

  • Update the persistent store

    Hi all I am a soft developer for BB. I need a little clarification. Is it possible to update the data stored in the persistent store? Pls answer... Thank you in advance...