Including sqlite database in a windows air installer

I am trying to create a cross platform air installer that uses a sqlite database.
This is the code I use to copy the database from the installer to the users application directory:
var dataFile:File = File.applicationDirectory.resolvePath("data/myDataStorage.db");
var dataUserFile:File = File.documentsDirectory.resolvePath("myDataStorage.db");
When using the database I access it here:
var file:File = File.documentsDirectory.resolvePath("myDataStorage.db");
This works great on a mac.  On a PC it does not work.  Can anyone recommend a resource or give me a tip or two?
Thanks

I have been looking into this problem.  It turns out that it is not just a Windows problem it also happens on a Mac.  Here is what is happening:
I am trying to copy a sqlite .db from the read only application directory to the users documents directory.
First I setup these vars:
    var dbFile:File =  File.applicationDirectory.resolvePath("db/myDataStorage.db");
     var dbWorkedFile:File =  File.documentsDirectory.resolvePath("myDataStorage.db");
If I do this it works:
dbFile.copyTo(dbWorkedFile, true);  //If I set the overwrite param to 'true' then it works.
If I use this code:
dbFile.copyTo(dbWorkedFile);
or
dbFile.copyTo(dbWorkedFile, false);
I get the following error:
Error #3012: Cannot delete file or directory.
    at flash.filesystem::File/copyTo()
The funny thing is that I the destination documents directory will get a 4k blank file when the error occurs.  In addition if I try the same copy code on an image I get the same error but the whole image does get copied.
In the end I want my code to do something like the following so that it copies the database over only if it does not exist.  If I run this code now I get a 4k .db file and a 3012 error.  Any ideas?
public function copyDB():void
                var dbFile:File = File.applicationDirectory.resolvePath("db/myDataStorage.db");
                var dbWorkedFile:File = File.documentsDirectory.resolvePath("myDataStorage.db");
                if(!dbWorkedFile.exists){
                    trace("db Does Not Exist");
                    dbFile.copyTo(dbWorkedFile);
                } else { 
                    trace("db Exists so do nothing"); 
                dbConn = new SQLConnection(); 
                dbConn.openAsync(dbWorkedFile); 

Similar Messages

  • SqLite database persistence on mobile air application

    Hi, I'm Fabio from Italy. I'm developing a flex mobile application running on iPad, that application stores user settings in a local sqlite database on documentsDirectory. I've noticed that folder is destroyed and recreated each time the application is updated, and this is not good for user data . Is there any way to store that database in a folder that's NOT involved in the application uninstall/update procedure?
    Thank to all!

    You can't write anything to the applicationDirectory.
    Use File.applicationStorageDirectory instead
    Also you get path and do not wrtite to it anyting
    var jpgEncoder:JPGEncoder = new JPGEncoder(90);
    var byteArray:ByteArray = jpgEncoder.encode( bitmapData );
    // set an filename
    var filename:String = "cool-wallpaper.jpg";
    // get current path
    var file:File = File.applicationDirectory.resolvePath( filename );
    // get the native path
    var wr:File = new File( file.nativePath );
    // create filestream
    var stream:FileStream = new FileStream();
    //  open/create the file, set the filemode to write; because we are going to save
    stream.open( wr , FileMode.WRITE);
    // write your byteArray into the file.
    stream.writeBytes ( byteArray, 0, byteArray.length );
    // close the file. That’s it.
    stream.close();
    Try to use:
    // get current path
    var file:File = File.applicationDocumentsDirectory.resolvePath( filename );
    //  open/create the file, set the filemode to write; because we are going to save
    stream.open( file , FileMode.WRITE);

  • Include SQLite in adobe air installer package

    Is it possible to have a SQLite DB included in the air installer package?
    I don't want to have the DB created when the application runs, I want to install it when the application installs.
    I also want to install it to the All Users>Application Data folder.
    Any help would be greatly appreciated.

    Yes. Just include the database file in the application package.
    There is no way to instruct the installer to put it into a special destination directory. Your app will have to check for the db file's existence and copy it to the right place if it is not there.

  • How to connect to and communicate with an SQLite database in AIR/Flex

    Hey guys,
    I recently decided I would try programming a vocabulary-training program in AIR, so I could use it on Linux as well. I got stuck pretty soon. I am trying to connect to a local SQLite database and I obviously fail epically. Posting the source code of the application here:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
       <mx:Script>
          <![CDATA[  
               import flash.filesystem.File;
              import flash.data.*;
             import mx.controls.Alert; 
                      private var dbFile:File;
                   private var conn:SQLConnection;
                   // -- AUTO INIT FUNCTIONS --------------------------------------------------- /
                   private function init():void {
                        // Create a File Reference to the Included DB
                        dbFile = File.applicationDirectory.resolvePath( "../slovniky.db" );
                        // Create SQL Connection
                        conn = new SQLConnection();
                        // Event Listener that will tell us when the DB is opened
                        conn.addEventListener(SQLEvent.OPEN, openSuccess);
                        // Event Listener that will tell us if an error occurs
                        conn.addEventListener(SQLErrorEvent.ERROR, openFailure);
                   // -- EVENT HANDLERS -------------------------------------------------------- /
             private function starter() :void {
                  slovickoEn.enabled = true;
                  nazor.enabled = true;
                  odeslat.enabled = true;
                  zrusit.enabled = true;
                  start.enabled = false;
                  // Otevírám spojení s databází v asynchroním módu
                   conn.openAsync( dbFile );
             private function openSuccess( event:SQLEvent ):void {
                        // Pokud se spojení povede!
                        Alert.show("Spojení se zdařilo!");
               private function openFailure( event:SQLEvent ):void {
                        // Pokud spojení selže!
                        Alert.show("Spojení se nezdařilo!")
             private function kontrola() : void {
                  if (nazor.text != "") {
                       if (nazor.text == "Pes") {
                       Alert.show("Správně!");    
                       else {
                       Alert.show("Špatně!! " + "Napsané slovíčko bylo " + nazor.text);     
          ]]>   
       </mx:Script>
       <mx:VBox width="400" height="200"
                   horizontalCenter="0" verticalCenter="0" backgroundColor="#FFFFFF"
                   paddingBottom="20" paddingLeft="20" paddingRight="20" paddingTop="20"
       >
          <mx:HBox width="100%" verticalAlign="middle" horizontalAlign="center">
             <mx:Label text="Anglicky:"/>
             <mx:TextInput id="slovickoEn" editable="false" text="Dog" enabled="false"/>
          </mx:HBox>
          <mx:HBox width="100%" verticalAlign="middle" horizontalAlign="center">
             <mx:Label text="Česky:"/>
             <mx:TextInput id="nazor"  enter="kontrola()" enabled="false"/>
          </mx:HBox>
          <mx:HBox width="100%" horizontalAlign="center">
             <mx:Spacer width="50" height="10"/>
             <mx:Button id="odeslat" label="Odeslat" color="#0D8401" click="kontrola()" enabled="false"/>
             <mx:Button id="zrusit" label="Zrušit" color="#0D8401" enabled="false"/>
          </mx:HBox>
          <mx:HBox width="100%" horizontalAlign="center">
             <mx:Spacer width="50" height="10"/>
             <mx:Button id="start" label="Start" color="#0D8401" click="starter()" enabled="true"/>
          </mx:HBox>
       </mx:VBox>
    </mx:WindowedApplication>
    The Run of the program tells me this:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
         at pes/starter()[C:\air\projects\pes\src\pes.mxml:45]
         at pes/__start_click()[C:\air\projects\pes\src\pes.mxml:93]
    I would appreciate any help or a how-to. I am an absolute beginner with some experience from HTML, CSS, PHP and rarely JS. What am I doing wrong? File attached for easier manipulation as well.
    Erthy

    Hi,
    Here is the complete example for the same with the code.Let me know if you have any issue with this.
    http://shardulbartwal.wordpress.com/2008/04/14/adobe-air-and-sqlite-connectivity/
    with Regards,
    Shardul Singh Bartwal

  • Windows 7 Adobe Air installation Error

    This error keeps popping up.
    "An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator."
    I am the administrator.
    I've tried:
    Uninstalling 1.5.3
    Running in admin mode
    I checked logs and said retuned with error code 7
    Don't know what to do, doesnt seem to be a fix.
    I have Windows 7 64 bit home premium edition

    I'm sorry you're running into installation issues with AIR.  Microsoft has just released a new utility that can help resolve installation problems.  Would you mind giving this a try and let us know how it works for you?  When running the Fix it, go through the uninstall process and try to remove Adobe AIR from your system.  Once finished, download the latest version of AIR and install again.
    Microsoft Install and Uninstall Fix It
    If you still encounter problems, we'll need to review the AIR installer log to better diagnose the issue.  Please post back with the log contents.  You can find instructions for finding these logs here:
    AIR Installer Log Instructions

  • Adobe AIR HTML/JS application and Windows Native Installer

    Hi,
    I am building an Adobe AIR application with HTML and Javascript and I would like to know how to make an Windows Native Installer.
    I am trying to build it with Flash Pro but it keeps returning the error 'Invalid SWF file'. At the application.xml file the <content> points to my index.html file. I don't use any SWF file. When I change this to point to the SWF it does build tha installer but the application loads the SWF.
    Is there any way to build a Windows Native Installer and the initial content be an HTML file?
    p.s. I tried to extract the files from the installer file and edit the application.xml there to point to the index.html. But I can't repackage the files to a valid air native installer.
    Thank you.

    Hi,
    Thank you for reporting this. The internal bug number for the issue is #2740755. The issue is currently under review and will be investigated by one of AIR team members.
    Regards,
    Catalin

  • Adobe air installation / uninstallation failure on windows 7 / 32bit

    My air version is 3.0.0.4080 as noted in below.
    It does not work on update to new version, and also on uninstallation.
    I have revies so many other posts on various websites.
    msiexec /unregister
    msiexec /regserver
    And also above solution did not work at all.
    Please give me a new, fancy solution.
    I hope so.
    [2011-12-13:04:41:55] Application Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:04:41:55] Commandline is: -update "c:\program files\misisipi player\misisipi player\misisipi player.exe" "C:\Users\Jaisu\AppData\Roaming\com.nowcom.Misisipi\Local Store\#ApplicationUpdater\update.air" 0.8.15
    [2011-12-13:04:41:55] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:41:55] Installed app (com.nowcom.Misisipi) located at c:\program files\misisipi player\misisipi player\misisipi player.exe
    [2011-12-13:04:41:56] Unpackaging file:///C:/Users/Jaisu/AppData/Roaming/com.nowcom.Misisipi/Local%20Store/%23ApplicationUp dater/update.air to C:\Users\Jaisu\AppData\Local\Temp\fla8CE3.tmp
    [2011-12-13:04:41:58] Application signature verified
    [2011-12-13:04:41:58] Unpackaging/validation complete
    [2011-12-13:04:41:58] Converting unpackaged application to a native installation package in C:\Users\Jaisu\AppData\Local\Temp\fla958B.tmp
    [2011-12-13:04:41:59] Native installation package creation succeeded
    [2011-12-13:04:41:59] Starting app update of c:\program files\misisipi player. Updating from com.nowcom.Misisipi version 0.8.4 to com.nowcom.Misisipi version 0.8.15 using the source file at file:///C:/Users/Jaisu/AppData/Roaming/com.nowcom.Misisipi/Local%20Store/%23ApplicationUp dater/update.air
    [2011-12-13:04:41:59] Installing msi at C:\Users\Jaisu\AppData\Local\Temp\fla958B.tmp\setup.msi with guid {398D973F-F476-B850-BE9B-CEF9B975C11D}
    [2011-12-13:04:42:04] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:42:04] Rolling back install of C:\Users\Jaisu\AppData\Local\Temp\fla958B.tmp\setup.msi
    [2011-12-13:04:42:04] Rollback complete
    [2011-12-13:04:42:04] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:42:04] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime "c:\Program Files\Common Files" -update -silent -logToStdout "c:\program files\misisipi player\misisipi player\misisipi player.exe" file:///C:/Users/Jaisu/AppData/Roaming/com.nowcom.Misisipi/Local%20Store/%23ApplicationUp dater/update.air 0.8.15
    [2011-12-13:04:42:04] Relaunching with elevation
    [2011-12-13:04:42:08] Application Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:04:42:08] Commandline is: -stdio \\.\pipe\AIR_4816_0 -runtime "c:\Program Files\Common Files" -update -silent -logToStdout "c:\program files\misisipi player\misisipi player\misisipi player.exe" file:///C:/Users/Jaisu/AppData/Roaming/com.nowcom.Misisipi/Local%20Store/%23ApplicationUp dater/update.air 0.8.15
    [2011-12-13:04:42:08] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:42:08] Installed app (com.nowcom.Misisipi) located at c:\program files\misisipi player\misisipi player\misisipi player.exe
    [2011-12-13:04:42:08] Unpackaging file:///C:/Users/Jaisu/AppData/Roaming/com.nowcom.Misisipi/Local%20Store/%23ApplicationUp dater/update.air to C:\Users\Jaisu\AppData\Local\Temp\flaBEBC.tmp
    [2011-12-13:04:42:09] Application signature verified
    [2011-12-13:04:42:09] Unpackaging/validation complete
    [2011-12-13:04:42:09] Converting unpackaged application to a native installation package in C:\Users\Jaisu\AppData\Local\Temp\flaC35E.tmp
    [2011-12-13:04:42:11] Native installation package creation succeeded
    [2011-12-13:04:42:11] Starting silent app update of c:\program files\misisipi player. Updating from com.nowcom.Misisipi version 0.8.4 to com.nowcom.Misisipi version 0.8.15 using the source file at file:///C:/Users/Jaisu/AppData/Roaming/com.nowcom.Misisipi/Local%20Store/%23ApplicationUp dater/update.air
    [2011-12-13:04:42:11] Installing msi at C:\Users\Jaisu\AppData\Local\Temp\flaC35E.tmp\setup.msi with guid {398D973F-F476-B850-BE9B-CEF9B975C11D}
    [2011-12-13:04:42:11] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:42:11] Rolling back install of C:\Users\Jaisu\AppData\Local\Temp\flaC35E.tmp\setup.msi
    [2011-12-13:04:42:11] Rollback complete
    [2011-12-13:04:42:11] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:42:11] Elevated install failed: error 0 1603
    [2011-12-13:04:42:12] Application Installer end with exit code 7
    [2011-12-13:04:44:47] Runtime Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:04:44:47] Commandline is: -arp:uninstall
    [2011-12-13:04:44:47] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:44:49] Relaunching with elevation
    [2011-12-13:04:44:49] Launching subprocess with commandline c:\program files\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    [2011-12-13:04:44:49] Runtime Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:04:44:49] Commandline is: -stdio \\.\pipe\AIR_6240_0 -eu
    [2011-12-13:04:44:49] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:44:49] Starting runtime uninstall. Uninstalling runtime version 3.0.0.4080
    [2011-12-13:04:44:49] Uninstalling product with GUID {ACEB2BAF-96DF-48FD-ADD5-43842D4C443D}
    [2011-12-13:04:44:49] Error occurred during msi uninstall operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-12-13:04:44:49] Rollback complete
    [2011-12-13:04:44:49] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-12-13:04:44:49] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-12-13:04:44:49] Runtime Installer end with exit code 7
    [2011-12-13:04:44:51] Runtime Installer end with exit code 7
    [2011-12-13:04:49:19] Application Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:04:49:19] Commandline is: -playerVersion=11,1,102,55 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -isinstalled net.daum.musicdownloader adobe.com:air0.7541891867294908 onApplicationVersion
    [2011-12-13:04:49:19] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:49:19] Application Installer end with exit code 0
    [2011-12-13:04:51:27] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2011-12-13:04:51:27] Commandline is:
    [2011-12-13:04:51:27] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:51:34] Relaunching with elevation
    [2011-12-13:04:51:34] Launching subprocess with commandline c:\users\jaisu\appdata\local\temp\air383f.tmp\adobe air installer.exe -ei
    [2011-12-13:04:51:37] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2011-12-13:04:51:37] Commandline is: -stdio \\.\pipe\AIR_4368_0 -ei
    [2011-12-13:04:51:37] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:51:38] Starting silent runtime update. Updating runtime from version 3.0.0.4080 to version 3.1.0.4880
    [2011-12-13:04:51:38] Installing msi at c:\users\jaisu\appdata\local\temp\air383f.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-12-13:04:51:44] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:51:44] Rolling back install of c:\users\jaisu\appdata\local\temp\air383f.tmp\setup.msi
    [2011-12-13:04:51:44] Rollback complete
    [2011-12-13:04:51:44] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:51:44] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:51:44] Runtime Installer end with exit code 7
    [2011-12-13:04:51:47] Runtime Installer end with exit code 7
    [2011-12-13:04:51:49] Launching subprocess with commandline c:\program files\misisipi player\misisipi player\misisipi player.exe
    [2011-12-13:04:51:50] Application Installer end with exit code 7
    [2011-12-13:04:51:52] Application Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:04:51:52] Commandline is: -update "c:\program files\misisipi player\misisipi player\misisipi player.exe" "C:\Users\Jaisu\AppData\Roaming\com.nowcom.Misisipi\Local Store\#ApplicationUpdater\update.air" 0.8.15
    [2011-12-13:04:51:52] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:51:52] Installed app (com.nowcom.Misisipi) located at c:\program files\misisipi player\misisipi player\misisipi player.exe
    [2011-12-13:04:51:52] Unpackaging file:///C:/Users/Jaisu/AppData/Roaming/com.nowcom.Misisipi/Local%20Store/%23ApplicationUp dater/update.air to C:\Users\Jaisu\AppData\Local\Temp\flaA65C.tmp
    [2011-12-13:04:51:53] Application signature verified
    [2011-12-13:04:51:53] Unpackaging/validation complete
    [2011-12-13:04:51:53] Converting unpackaged application to a native installation package in C:\Users\Jaisu\AppData\Local\Temp\flaAAEF.tmp
    [2011-12-13:04:51:53] Native installation package creation succeeded
    [2011-12-13:04:51:54] Starting app update of c:\program files\misisipi player. Updating from com.nowcom.Misisipi version 0.8.4 to com.nowcom.Misisipi version 0.8.15 using the source file at file:///C:/Users/Jaisu/AppData/Roaming/com.nowcom.Misisipi/Local%20Store/%23ApplicationUp dater/update.air
    [2011-12-13:04:51:54] Installing msi at C:\Users\Jaisu\AppData\Local\Temp\flaAAEF.tmp\setup.msi with guid {398D973F-F476-B850-BE9B-CEF9B975C11D}
    [2011-12-13:04:51:54] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:51:54] Rolling back install of C:\Users\Jaisu\AppData\Local\Temp\flaAAEF.tmp\setup.msi
    [2011-12-13:04:51:54] Rollback complete
    [2011-12-13:04:51:54] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:51:54] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime "c:\Program Files\Common Files" -update -silent -logToStdout "c:\program files\misisipi player\misisipi player\misisipi player.exe" file:///C:/Users/Jaisu/AppData/Roaming/com.nowcom.Misisipi/Local%20Store/%23ApplicationUp dater/update.air 0.8.15
    [2011-12-13:04:51:54] Relaunching with elevation
    [2011-12-13:04:51:56] Subprocess Elevated sub-installer failed (-1)
    [2011-12-13:04:52:10] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2011-12-13:04:52:10] Commandline is:
    [2011-12-13:04:52:10] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:52:12] Relaunching with elevation
    [2011-12-13:04:52:12] Launching subprocess with commandline c:\users\jaisu\appdata\local\temp\aire3aa.tmp\adobe air installer.exe -ei
    [2011-12-13:04:52:15] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2011-12-13:04:52:15] Commandline is: -stdio \\.\pipe\AIR_4448_0 -ei
    [2011-12-13:04:52:15] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:52:15] Starting silent runtime update. Updating runtime from version 3.0.0.4080 to version 3.1.0.4880
    [2011-12-13:04:52:15] Installing msi at c:\users\jaisu\appdata\local\temp\aire3aa.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-12-13:04:52:17] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:52:17] Rolling back install of c:\users\jaisu\appdata\local\temp\aire3aa.tmp\setup.msi
    [2011-12-13:04:52:17] Rollback complete
    [2011-12-13:04:52:17] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:52:17] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:52:17] Runtime Installer end with exit code 7
    [2011-12-13:04:52:19] Runtime Installer end with exit code 7
    [2011-12-13:04:52:58] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2011-12-13:04:52:58] Commandline is:
    [2011-12-13:04:52:58] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:53:01] Relaunching with elevation
    [2011-12-13:04:53:01] Launching subprocess with commandline c:\users\jaisu\appdata\local\temp\aira0b1.tmp\adobe air installer.exe -ei
    [2011-12-13:04:53:03] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2011-12-13:04:53:03] Commandline is: -stdio \\.\pipe\AIR_6516_0 -ei
    [2011-12-13:04:53:03] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:53:03] Starting silent runtime update. Updating runtime from version 3.0.0.4080 to version 3.1.0.4880
    [2011-12-13:04:53:03] Installing msi at c:\users\jaisu\appdata\local\temp\aira0b1.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-12-13:04:53:06] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:53:06] Rolling back install of c:\users\jaisu\appdata\local\temp\aira0b1.tmp\setup.msi
    [2011-12-13:04:53:06] Rollback complete
    [2011-12-13:04:53:06] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:53:06] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:53:06] Runtime Installer end with exit code 7
    [2011-12-13:04:53:08] Runtime Installer end with exit code 7
    [2011-12-13:04:53:20] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-13:04:53:20] Commandline is:
    [2011-12-13:04:53:20] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:53:34] Relaunching with elevation
    [2011-12-13:04:53:34] Launching subprocess with commandline c:\users\jaisu\appdata\local\temp\airf2a7.tmp\adobe air installer.exe -ei
    [2011-12-13:04:53:36] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2011-12-13:04:53:36] Commandline is: -stdio \\.\pipe\AIR_5476_0 -ei
    [2011-12-13:04:53:36] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:53:36] Starting silent runtime update. Updating runtime from version 3.0.0.4080 to version 3.1.0.4880
    [2011-12-13:04:53:37] Installing msi at c:\users\jaisu\appdata\local\temp\airf2a7.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-12-13:04:53:40] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:53:40] Rolling back install of c:\users\jaisu\appdata\local\temp\airf2a7.tmp\setup.msi
    [2011-12-13:04:53:40] Rollback complete
    [2011-12-13:04:53:40] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:53:40] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-13:04:53:40] Runtime Installer end with exit code 7
    [2011-12-13:04:55:16] Runtime Installer end with exit code 7
    [2011-12-13:04:56:48] Runtime Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:04:56:48] Commandline is: -arp:uninstall
    [2011-12-13:04:56:48] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:56:51] Relaunching with elevation
    [2011-12-13:04:56:51] Launching subprocess with commandline c:\program files\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    [2011-12-13:04:56:51] Runtime Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:04:56:51] Commandline is: -stdio \\.\pipe\AIR_2616_0 -eu
    [2011-12-13:04:56:51] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:04:56:51] Starting runtime uninstall. Uninstalling runtime version 3.0.0.4080
    [2011-12-13:04:56:51] Uninstalling product with GUID {ACEB2BAF-96DF-48FD-ADD5-43842D4C443D}
    [2011-12-13:04:56:51] Error occurred during msi uninstall operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-12-13:04:56:51] Rollback complete
    [2011-12-13:04:56:51] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-12-13:04:56:51] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-12-13:04:56:51] Runtime Installer end with exit code 7
    [2011-12-13:04:57:05] Runtime Installer end with exit code 7
    [2011-12-13:05:01:50] Runtime Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:05:01:50] Commandline is:
    [2011-12-13:05:01:50] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:05:01:53] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-12-13:05:01:53] Runtime Installer end with exit code 0
    [2011-12-13:05:01:53] Runtime Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:05:01:53] Commandline is: -installupdatecheck
    [2011-12-13:05:01:53] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:05:01:53] Performing pingback request
    [2011-12-13:05:01:53] Starting runtime background update check
    [2011-12-13:05:01:53] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.0.0.4080/update
    [2011-12-13:05:01:53] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.0.0.4080/update to C:\Users\Jaisu\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-12-13:05:01:59] Unpackaging complete
    [2011-12-13:05:01:59] Download success
    [2011-12-13:05:01:59] Runtime updated downloaded
    [2011-12-13:05:02:02] User had deferred installing the update
    [2011-12-13:05:02:02] Runtime Installer end with exit code 0
    [2011-12-13:05:02:08] Application Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:05:02:08] Commandline is:
    [2011-12-13:05:02:08] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:05:02:11] Cancel request received
    [2011-12-13:05:02:11] Application Installer end with exit code 6
    [2011-12-13:05:07:19] Runtime Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:05:07:19] Commandline is: -arp:uninstall
    [2011-12-13:05:07:19] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:05:07:21] Relaunching with elevation
    [2011-12-13:05:07:21] Launching subprocess with commandline c:\program files\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    [2011-12-13:05:07:21] Runtime Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:05:07:21] Commandline is: -stdio \\.\pipe\AIR_1256_0 -eu
    [2011-12-13:05:07:21] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:05:07:21] Starting runtime uninstall. Uninstalling runtime version 3.0.0.4080
    [2011-12-13:05:07:21] Uninstalling product with GUID {ACEB2BAF-96DF-48FD-ADD5-43842D4C443D}
    [2011-12-13:05:07:22] Error occurred during msi uninstall operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-12-13:05:07:22] Rollback complete
    [2011-12-13:05:07:22] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-12-13:05:07:22] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-12-13:05:07:22] Runtime Installer end with exit code 7
    [2011-12-13:05:07:23] Runtime Installer end with exit code 7
    [2011-12-13:05:10:17] Runtime Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:05:10:17] Commandline is: -arp:uninstall
    [2011-12-13:05:10:17] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:05:10:42] Relaunching with elevation
    [2011-12-13:05:10:42] Launching subprocess with commandline c:\program files\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    [2011-12-13:05:10:42] Runtime Installer begin with version 3.0.0.4080 on Windows 7 x86
    [2011-12-13:05:10:42] Commandline is: -stdio \\.\pipe\AIR_7584_0 -eu
    [2011-12-13:05:10:42] Installed runtime (3.0.0.4080) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-13:05:10:42] Starting runtime uninstall. Uninstalling runtime version 3.0.0.4080
    [2011-12-13:05:10:42] Uninstalling product with GUID {ACEB2BAF-96DF-48FD-ADD5-43842D4C443D}
    [2011-12-13:05:10:42] Error occurred during msi uninstall operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-12-13:05:10:42] Rollback complete
    [2011-12-13:05:10:42] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-12-13:05:10:42] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    [2011-12-13:05:10:42] Runtime Installer end with exit code 7
    [2011-12-13:05:10:44] Runtime Installer end with exit code 7

    I'm sorry you're running into installation issues with AIR.  Microsoft has just released a new utility that can help resolve installation problems.  Would you mind giving this a try and let us know how it works for you?  When running the Fix it, go through the uninstall process and try to remove Adobe AIR from your system.  Once finished, download the latest version of AIR and install again.
    Microsoft Install and Uninstall Fix It
    Thanks,
    Chris

  • Air installer won't display window in Mac OS 10.6.4

    Hi,
    I'm having problems installing Air. I just bought a $79 app running only on Air and am quite frustrated about this.
    I downloaded the latest Air installer but when I launch it, the icon appears in the dock but the window is nowhere to be seen – so I can't go through with the installation process.
    Noteworthy:
    - the installer does create a Adobe/Air directory in my Application support folder
    - this is the console output for the installer:
    14/10/10 09:01:48 /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[32095] Performing runtime install
    14/10/10 09:01:48 /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[32095] UI SWF load is complete
    14/10/10 09:01:48 /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[32095] UI initialized
    14/10/10 09:01:48 /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[32095] starting user confirmation
    14/10/10 09:01:48 /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[32095] Version of this installer: 2.0.4.13090
    14/10/10 09:01:48 /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[32095] Installation type: new
    14/10/10 09:01:49 [0x0-0x1f81f8].com.adobe.air.Installer[32095] objc[32095]: Class WKAppKitDrawDecoyWindow is implemented in both /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit and /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib. One of the two will be used. Which one is undefined.
    What I've tried to do so far:
    - Deleting Application Support/Adobe/Air
    - Deleting pref files
    - Deleting all Air applications
    - Copying uninstaller from another Mac, uninstalling and trying again
    Nothing seems to work. What a waste of money and time.
    Please help !!
    Message was edited by: martinpannier

    1. Administrator
    2. No AV
    3. French
    4. It works !
    5. It's not the first time, but sadly I can't remember the version (almost certainly 1.x)
    6.
    Output for 2.0.3 :
    20/10/10 00:03:48 /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59689] Performing runtime install
    20/10/10 00:03:48 /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59689] UI SWF load is complete
    20/10/10 00:03:49 /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59689] UI initialized
    20/10/10 00:03:49 /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59689] starting user confirmation
    20/10/10 00:03:49 /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59689] Version of this installer: 2.0.3.13070
    20/10/10 00:03:49 /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59689] Installation type: new
    20/10/10 00:03:49 [0x0-0x902902].com.adobe.air.Installer[59689] objc[59689]: Class WKAppKitDrawDecoyWindow is implemented in both /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit and /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib. One of the two will be used. Which one is undefined.
    Output for 2.0.4 :
    20/10/10 00:04:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59757] Performing runtime install
    20/10/10 00:04:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59757] UI SWF load is complete
    20/10/10 00:04:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59757] UI initialized
    20/10/10 00:04:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59757] starting user confirmation
    20/10/10 00:04:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59757] Version of this installer: 2.0.4.13090
    20/10/10 00:04:58 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59757] Installation type: new
    20/10/10 00:04:59 [0x0-0x909909].com.adobe.air.Installer[59757] objc[59757]: Class WKAppKitDrawDecoyWindow is implemented in both /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit and /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib. One of the two will be used. Which one is undefined.
    Also, when I quit the installer :
    20/10/10 00:05:17 /Volumes/Adobe AIR 1/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer[59757] begin quitting
    20/10/10 00:05:18 com.apple.launchd.peruser.501[323] ([0x0-0x909909].com.adobe.air.Installer[59757]) Job appears to have crashed: Bus error
    20/10/10 00:05:20 ReportCrash[59725] Saved crash report for Adobe AIR Installer[59757] version 2.0.4 (2.0.4.13090) to /Users/martin/Library/Logs/DiagnosticReports/Adobe AIR Installer_2010-10-20-000519_tinou.crash
    Best,
    Martin

  • How to run Adobe AIR installer package created in windows into Linux

    Hi,
    we have created an Adobe AIR Installer package in Windows XP, Can any one help me how to run the Installer package in Linux that is created in Windows.
    Please, any help is Appreciable.

    Please any help for the above query is appreciable.

  • Getting Error Windows cannot find Adobe Air installer

    Trying to install Adobe Air. Installation file wont run. Get error when i run the file.
    "Windows cannot find 'C:\Users\Matt\AppData\Local\Temp\AIR4654.tmp\Adobe AIR Installer.exe'. Make sure you typed the name correctly, and then try again"
    I am trying to run the current version of Adobe Air from the Adobe website. Please help.
    Thanks,
    Matt

    Still no luck cant play LoL...Was having an issue with a asus start up file what was in the TEMP folder also said not found....deleted a registry for it and that one stopped coming up when the computer started...but i still cant install adobe air.

  • Can air installer be included

    Hi all, i was just wondering if the air installer can be
    included in an email attachment, so i can send a user the
    attachment and it would install from the email, and not by having
    to go to a website and installing it.
    I have a little app i havebuilt so i can send funnie emails
    to people. but if they have to go to a site and install the
    application it might take a bit to long. and need to have it as a
    simple process. ( One you have the application installed it works
    fine, just need it to reconise you do not have the player and ask
    if you want to download it )
    Any help would be Greatly appreciated
    Kind Regards
    Kev

    Adobe Air installer ranges from 15 to 20 Mb.
    Not many email accounts can send/receive big files like that.
    Out of curiosity, is it that bad to send your users to the
    web sites?
    AFAIK it is the quickest way to install air installer.
    HTH,

  • How to embed SQLite database to Air app?

    Now I connect to a database file like this:
    var dbFile:File = File.applicationStorageDirectory.resolvePath("myDB.db");
    conn = new SQLConnection();
    conn.openAsync(dbFile);
    conn.addEventListener(SQLEvent.OPEN, openSuccess);
    conn.addEventListener(SQLErrorEvent.ERROR, openFailure);
    Tell me please, how do I embed the DB file to the application? I need to have the database inside a swf.

    Here's info on encrypting a database in AIR:
    Creating an encrypted database
    Working with the encrypted local SQLite database
    flash.data.SQLConnection
    Chris

  • Adobe AIR installation problem

    I've been trying to update my AIR install from version 1.0.8.4990 to 2.6.0.19140 but when I try to do so I get an error stating that it might not be allowed by the administrator, even though I am the admin.
    I'm running Windows 7 Home Premium SP1 64bit on an Alienware M15x i7 CPU 1.73 GHz 6GB RAM
    AIR installer log:
    [2011-05-06:22:02:09] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-05-06:22:02:09] Commandline is: -silent
    [2011-05-06:22:02:09] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-06:22:02:09] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.5.1.17730
    [2011-05-06:22:02:10] Installing msi at c:\users\nulliu~1\appdata\local\temp\airaa43.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2011-05-06:22:02:18] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-06:22:02:18] Rolling back install of c:\users\nulliu~1\appdata\local\temp\airaa43.tmp\setup.msi
    [2011-05-06:22:02:18] Rollback complete
    [2011-05-06:22:02:18] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-06:22:02:18] Runtime Installer end with exit code 7
    [2011-05-07:16:33:32] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-05-07:16:33:32] Commandline is: -silent
    [2011-05-07:16:33:32] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:33:32] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.5.1.17730
    [2011-05-07:16:33:33] Installing msi at c:\users\nulliu~1\appdata\local\temp\aird7fe.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2011-05-07:16:33:34] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:33:34] Rolling back install of c:\users\nulliu~1\appdata\local\temp\aird7fe.tmp\setup.msi
    [2011-05-07:16:33:34] Rollback complete
    [2011-05-07:16:33:34] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:33:34] Runtime Installer end with exit code 7
    [2011-05-07:16:34:03] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-05-07:16:34:03] Commandline is: -silent
    [2011-05-07:16:34:03] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:34:03] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.5.1.17730
    [2011-05-07:16:34:03] Installing msi at c:\users\nulliu~1\appdata\local\temp\air4df7.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2011-05-07:16:34:04] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:34:04] Rolling back install of c:\users\nulliu~1\appdata\local\temp\air4df7.tmp\setup.msi
    [2011-05-07:16:34:04] Rollback complete
    [2011-05-07:16:34:04] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:34:04] Runtime Installer end with exit code 7
    [2011-05-07:16:35:51] Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    [2011-05-07:16:35:51] Commandline is:
    [2011-05-07:16:35:51] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:36:02] Relaunching with elevation
    [2011-05-07:16:36:02] Launching subprocess with commandline c:\users\nulliu~1\appdata\local\temp\airf31c.tmp\adobe air installer.exe -ei
    [2011-05-07:16:36:04] Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    [2011-05-07:16:36:04] Commandline is: -stdio \\.\pipe\AIR_6892_0 -ei
    [2011-05-07:16:36:04] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:36:04] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.6.0.19140
    [2011-05-07:16:36:04] Installing msi at c:\users\nulliu~1\appdata\local\temp\airf31c.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-05-07:16:36:06] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:36:06] Rolling back install of c:\users\nulliu~1\appdata\local\temp\airf31c.tmp\setup.msi
    [2011-05-07:16:36:06] Rollback complete
    [2011-05-07:16:36:06] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:36:06] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:36:06] Runtime Installer end with exit code 7
    [2011-05-07:16:36:11] Runtime Installer end with exit code 7
    [2011-05-07:16:36:32] Runtime Installer begin with version 2.6.0.19140 on Windows Vista x86
    [2011-05-07:16:36:32] Commandline is:
    [2011-05-07:16:36:32] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:36:38] Relaunching with elevation
    [2011-05-07:16:36:38] Launching subprocess with commandline c:\users\nulliu~1\appdata\local\temp\air8ebe.tmp\adobe air installer.exe -ei
    [2011-05-07:16:36:40] Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    [2011-05-07:16:36:40] Commandline is: -stdio \\.\pipe\AIR_1944_0 -ei
    [2011-05-07:16:36:40] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:36:40] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.6.0.19140
    [2011-05-07:16:36:40] Installing msi at c:\users\nulliu~1\appdata\local\temp\air8ebe.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-05-07:16:36:41] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:36:41] Rolling back install of c:\users\nulliu~1\appdata\local\temp\air8ebe.tmp\setup.msi
    [2011-05-07:16:36:41] Rollback complete
    [2011-05-07:16:36:41] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:36:41] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:36:41] Runtime Installer end with exit code 7
    [2011-05-07:16:36:43] Runtime Installer end with exit code 7
    [2011-05-07:16:50:10] Runtime Installer begin with version 2.6.0.19140 on Windows Vista x86
    [2011-05-07:16:50:10] Commandline is:
    [2011-05-07:16:50:10] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:50:15] Relaunching with elevation
    [2011-05-07:16:50:15] Launching subprocess with commandline c:\users\nulliu~1\appdata\local\temp\air11c3.tmp\adobe air installer.exe -ei
    [2011-05-07:16:50:18] Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    [2011-05-07:16:50:18] Commandline is: -stdio \\.\pipe\AIR_7264_0 -ei
    [2011-05-07:16:50:18] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:50:18] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.6.0.19140
    [2011-05-07:16:50:18] Installing msi at c:\users\nulliu~1\appdata\local\temp\air11c3.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-05-07:16:50:20] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:50:20] Rolling back install of c:\users\nulliu~1\appdata\local\temp\air11c3.tmp\setup.msi
    [2011-05-07:16:50:20] Rollback complete
    [2011-05-07:16:50:20] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:50:20] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:50:20] Runtime Installer end with exit code 7
    [2011-05-07:16:50:22] Runtime Installer end with exit code 7
    [2011-05-07:17:04:51] Runtime Installer begin with version 2.6.0.19140 on Windows Vista x86
    [2011-05-07:17:04:51] Commandline is:
    [2011-05-07:17:04:51] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:17:04:55] Relaunching with elevation
    [2011-05-07:17:04:55] Launching subprocess with commandline c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\adobe air installer.exe -ei
    [2011-05-07:17:04:57] Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    [2011-05-07:17:04:57] Commandline is: -stdio \\.\pipe\AIR_4516_0 -ei
    [2011-05-07:17:04:57] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:17:04:57] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.6.0.19140
    [2011-05-07:17:04:57] Installing msi at c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-05-07:17:04:59] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:17:04:59] Rolling back install of c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi
    [2011-05-07:17:04:59] Rollback complete
    [2011-05-07:17:04:59] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:17:04:59] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:17:04:59] Runtime Installer end with exit code 7
    [2011-05-07:17:05:48] Runtime Installer end with exit code 7
    MSI log:
    === Verbose logging started: 5/7/2011  17:04:57  Build type: SHIP UNICODE 5.00.7601.00  Calling process: C:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\adobe air installer.exe ===
    MSI (c) (24:20) [17:04:57:908]: Resetting cached policy values
    MSI (c) (24:20) [17:04:57:908]: Machine policy value 'Debug' is 0
    MSI (c) (24:20) [17:04:57:908]: ******* RunEngine:
               ******* Product: c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (c) (24:20) [17:04:57:908]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (24:20) [17:04:57:908]: Grabbed execution mutex.
    MSI (c) (24:20) [17:04:57:988]: Cloaking enabled.
    MSI (c) (24:20) [17:04:57:988]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (24:20) [17:04:57:993]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (68:44) [17:04:58:003]: Running installation inside multi-package transaction c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi
    MSI (s) (68:44) [17:04:58:003]: Grabbed execution mutex.
    MSI (s) (68:B8) [17:04:58:008]: Resetting cached policy values
    MSI (s) (68:B8) [17:04:58:008]: Machine policy value 'Debug' is 0
    MSI (s) (68:B8) [17:04:58:008]: ******* RunEngine:
               ******* Product: c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (s) (68:B8) [17:04:58:008]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: User non-assigned for product: 3C0A5E89DE68924439680FBD949E85AE
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: User non-assigned for product: 3C0A5E89DE68924439680FBD949E85AE
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: User non-assigned for product: 68C813D9C4FAF9046ACA1738FFC44F42
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: User non-assigned for product: 68C813D9C4FAF9046ACA1738FFC44F42
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 000021599B0090400100000000F01FEC
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 000021599B0090400100000000F01FEC
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 00004109D60090400100000000F01FEC
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 00004109D60090400100000000F01FEC
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 032440EF5AC97F34B985A55C2AA8F133
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 032440EF5AC97F34B985A55C2AA8F133
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 03F1681F9143BD442B1A2C472865893B
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 03F1681F9143BD442B1A2C472865893B
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 0E9201899CF73FC4BA93F631631229A1
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 0E9201899CF73FC4BA93F631631229A1
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 0EF2A18C47539A00EC4DDBAA33C4EBE8
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 0EF2A18C47539A00EC4DDBAA33C4EBE8
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 1007C6B46D7C017319E3B52CF3EC196E
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 1007C6B46D7C017319E3B52CF3EC196E
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 130592F1397E80343A48553579D7DF31
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 130592F1397E80343A48553579D7DF31
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 16DFDCBFFCD717E4296278B30A501393
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 16DFDCBFFCD717E4296278B30A501393
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 195F8ADCA6CF19E448F7F849D267DE01
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 195F8ADCA6CF19E448F7F849D267DE01
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 1C955A13D4E9B324D93D436A5C937825
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 1C955A13D4E9B324D93D436A5C937825
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 1D034B0FAA6BD374B960AAD30DF10D8B
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 1D034B0FAA6BD374B960AAD30DF10D8B
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 1DCE80E5E89C1174FB56F87D633B9F96
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 1DCE80E5E89C1174FB56F87D633B9F96
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 1F764691F11C67F458B88521DA8CB349
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 1F764691F11C67F458B88521DA8CB349
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 2350B7483E55FAA4D8B73E1A7ADC715E
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 2350B7483E55FAA4D8B73E1A7ADC715E
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 249202383B4805C468228B0CAAD28258
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 249202383B4805C468228B0CAAD28258
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 249C00B832E9FB846BED526B3E5A3A4C
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 249C00B832E9FB846BED526B3E5A3A4C
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 26ABA8B10F47DE741BC84A13825E198B
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 26ABA8B10F47DE741BC84A13825E198B
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 26CEF00243C306D4C98ECE73E2100CF8
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 26CEF00243C306D4C98ECE73E2100CF8
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 29F618052561C7A49BCB846F2847C2B4
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 29F618052561C7A49BCB846F2847C2B4
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 33408A8EB2031FF418D5CF8CAE4C28FF
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 33408A8EB2031FF418D5CF8CAE4C28FF
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 389F20921C4BAB448BD5C5D6252E4C14
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 389F20921C4BAB448BD5C5D6252E4C14
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 3CEB74B887CF864284216F68252FFF2E
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 3CEB74B887CF864284216F68252FFF2E
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 3D04254D3B6B9FF42B3445CE3E1E0066
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 3D04254D3B6B9FF42B3445CE3E1E0066
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 3e43b73803c7c394f8a6b2f0402e19c2
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 3e43b73803c7c394f8a6b2f0402e19c2
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 3ECDCD77DED23F261845507E5474D270
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 3ECDCD77DED23F261845507E5474D270
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 3F0F872B985FE9B920F4473AC2E039D6
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 3F0F872B985FE9B920F4473AC2E039D6
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 4314AE291D01A814191EA5403531A183
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 4314AE291D01A814191EA5403531A183
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 48D53FB2773607F4F99379FC766EF7FF
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 48D53FB2773607F4F99379FC766EF7FF
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 4A94D9E94FD183147BBDD5788A3980E8
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 4A94D9E94FD183147BBDD5788A3980E8
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 4A9D4F432C248434EB4F5E358C54947E
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 4A9D4F432C248434EB4F5E358C54947E
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 4EA42A62D9304AC4784BF268140602FF
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 4EA42A62D9304AC4784BF268140602FF
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 54F83076AC671556892920E52F056CD3
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 54F83076AC671556892920E52F056CD3
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 55565908215A0914C9DA0B003CD6B6B6
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 55565908215A0914C9DA0B003CD6B6B6
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 561F2E879F5EF1A638AC7317915A5839
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 561F2E879F5EF1A638AC7317915A5839
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 57AD0A24A82AEEADFD8D1603DA6F3E55
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 57AD0A24A82AEEADFD8D1603DA6F3E55
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 5A537C33EF859C78FBD73FFB0FA2C3C7
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 5A537C33EF859C78FBD73FFB0FA2C3C7
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 5A5F69ECD485F8F4AAE3B9EA4D31BD27
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 5A5F69ECD485F8F4AAE3B9EA4D31BD27
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 5C7DDB6FDE989654398164A99A375227
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 5C7DDB6FDE989654398164A99A375227
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 5F85FC338D845754386D695F474E8DA3
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 5F85FC338D845754386D695F474E8DA3
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 6113A595BB04F0E42A8E7D59D15A2607
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 6113A595BB04F0E42A8E7D59D15A2607
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 6116D6C8427B0184F8D20D746E7B6DE8
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 6116D6C8427B0184F8D20D746E7B6DE8
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 623AB863DA37153448DEC3A0A725CC35
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 623AB863DA37153448DEC3A0A725CC35
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 685B8432EA9CEC6439C66AE849622E41
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 685B8432EA9CEC6439C66AE849622E41
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 68AB67CA7DA73301B7449A0400000010
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 68AB67CA7DA73301B7449A0400000010
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 68AB67CA7DA746454382090000000040
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 68AB67CA7DA746454382090000000040
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 691D6C014ED07BC2B5AA96D65D354684
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 691D6C014ED07BC2B5AA96D65D354684
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 6E58EC68CABDDFF39B774E7BF9389C90
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 6E58EC68CABDDFF39B774E7BF9389C90
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 6E8A266FCD4F2A1409E1C8110F44DBCE
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 6E8A266FCD4F2A1409E1C8110F44DBCE
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 6F18CA263DDB0114D963E3E9AA4B9099
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 6F18CA263DDB0114D963E3E9AA4B9099
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 6F9E66FF7E38E3A3FA41D89E8A906A4A
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 6F9E66FF7E38E3A3FA41D89E8A906A4A
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 7292FB95B781FCD62A64AA1392A86AED
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 7292FB95B781FCD62A64AA1392A86AED
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 766F6333940964D4896BC447E3BE5C1B
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 766F6333940964D4896BC447E3BE5C1B
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 775F634D5961F2D4B844CA679CE90020
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 775F634D5961F2D4B844CA679CE90020
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 7BD4C90EC03660F46A13E87A329932FA
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 7BD4C90EC03660F46A13E87A329932FA
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 7F80AB91827CC964A853FBDB6333EB80
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 7F80AB91827CC964A853FBDB6333EB80
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 828D9A99181FA7C4293C4C5AC0BE61D0
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 828D9A99181FA7C4293C4C5AC0BE61D0
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 83A4CE2B545B00A4284131EFE019E5D6
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 83A4CE2B545B00A4284131EFE019E5D6
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 840D7C5E4B9F91243B32B8BD102A65D3
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 840D7C5E4B9F91243B32B8BD102A65D3
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 8456A20EEDF62E04E89D11D9D7E746F1
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 8456A20EEDF62E04E89D11D9D7E746F1
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 8663020007180A44EB446B23AFD487F0
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 8663020007180A44EB446B23AFD487F0
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 88119C0AF88C68E4396EDCC7A9626694
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 88119C0AF88C68E4396EDCC7A9626694
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 884FD4BEFEAAF6043A14BCA2AA13B509
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 884FD4BEFEAAF6043A14BCA2AA13B509
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 89242C726A04A4B58A5E70F0B402DB3E
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 89242C726A04A4B58A5E70F0B402DB3E
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 8994BF104C33134458DE70E9E3FE7ED5
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 8994BF104C33134458DE70E9E3FE7ED5
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 8A3132AB8427AFB1293EE74989D78097
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: 8A3132AB8427AFB1293EE74989D78097
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: 971105A74725DFA6DD6E2B321648F3C5
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: 971105A74725DFA6DD6E2B321648F3C5
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: 9A4666D624338494B9E730E4EF63F6F0
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: 9A4666D624338494B9E730E4EF63F6F0
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: 9B1A53230CA5AAA3757A23FE29B9D3B0
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: 9B1A53230CA5AAA3757A23FE29B9D3B0
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: 9C8928403D4AB094F99FBA20A329833F
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: 9C8928403D4AB094F99FBA20A329833F
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A1DEB581D160FEE3525B905F953FC61D
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A1DEB581D160FEE3525B905F953FC61D
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A2A7011144DA8CB4BA5B8EE836CB7A58
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A2A7011144DA8CB4BA5B8EE836CB7A58
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A3878338869058B3FA7CABEAA036CD05
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A3878338869058B3FA7CABEAA036CD05
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A6C64DD86500CEF47BA082BB611A1FF1
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A6C64DD86500CEF47BA082BB611A1FF1
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A80654B854CDB3F429F116DC2AC2A938
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A80654B854CDB3F429F116DC2AC2A938
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A889D6FD0AEE7724AA8B51E880E634B9
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A889D6FD0AEE7724AA8B51E880E634B9
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A97530051D0438AB848FA19B9155ABB8
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A97530051D0438AB848FA19B9155ABB8
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: AB4C301D509FA7340894BD4267B3EB63
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: AB4C301D509FA7340894BD4267B3EB63
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: ACE1E529364750D6661E85E40538A4F7
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: ACE1E529364750D6661E85E40538A4F7
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: AD0AC5DBDA17AD341BE9E6EEC0A9CDA9
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: AD0AC5DBDA17AD341BE9E6EEC0A9CDA9
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: b25099274a207264182f8181add555d0
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: b25099274a207264182f8181add555d0
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: B418526280CCFE90113F81A35D441AA5
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: B418526280CCFE90113F81A35D441AA5
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: B6ACDB9A3563B764CA384963D73AFB3E
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: B6ACDB9A3563B764CA384963D73AFB3E
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: B9802F8A97F16FB43B582A2C0B9B7AD4
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: B9802F8A97F16FB43B582A2C0B9B7AD4
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: BAA8E7CC7F038D185776280B6E4E14C8
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: BAA8E7CC7F038D185776280B6E4E14C8
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: BC3F6BE54F64F1540A82F7D6D8537D0D
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: BC3F6BE54F64F1540A82F7D6D8537D0D
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: BD002968A7820CD40BB2B27678BFDCC4
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: BD002968A7820CD40BB2B27678BFDCC4
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: BF137C06159CEC14DA14E8458C956490
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: BF137C06159CEC14DA14E8458C956490
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: BFD0E1EA9D3AC154AAF764DF9340004D
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: BFD0E1EA9D3AC154AAF764DF9340004D
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: C4B69A87346AF0D4892C8A1EA666969F
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: C4B69A87346AF0D4892C8A1EA666969F
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: C65D44196E6661AC78673BEFCCF2FFE1
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: C65D44196E6661AC78673BEFCCF2FFE1
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: C7BCDCEDCC85568419FA26F77989EF84
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: C7BCDCEDCC85568419FA26F77989EF84
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: C8CA84773E81BB3459B980F8EA1AF62B
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: C8CA84773E81BB3459B980F8EA1AF62B
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: D0487B17D4BBC904782AE9DF01CBC0D3
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: D0487B17D4BBC904782AE9DF01CBC0D3
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: D20352A90C039D93DBF6126ECE614057
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: D20352A90C039D93DBF6126ECE614057
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: D7314F9862C648A4DB8BE2A5B47BE100
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: D7314F9862C648A4DB8BE2A5B47BE100
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DB4460A8C7059F6287C86815D79DA441
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DB4460A8C7059F6287C86815D79DA441
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DBD00402BD6E8B54B9B6D17D308381CE
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DBD00402BD6E8B54B9B6D17D308381CE
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DC276626FCFB9A94EAEFBAF0DEB3CFB5
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DC276626FCFB9A94EAEFBAF0DEB3CFB5
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DDA39468D428E8B4DB27C8D5DC5CA217
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DDA39468D428E8B4DB27C8D5DC5CA217
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DEC122ABDE1FED9DEC3AD32879A25568
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DEC122ABDE1FED9DEC3AD32879A25568
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DFC90B5F2B0FFA63D84FD16F6BF37C4B
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DFC90B5F2B0FFA63D84FD16F6BF37C4B
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DFDBABC48F94DF74EBD7CEED270725A5
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DFDBABC48F94DF74EBD7CEED270725A5
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: E3C9A781137F267137B14EC5EDEB2176
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: E3C9A781137F267137B14EC5EDEB2176
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: E5D9D200AB92D6E3B94CD3D7D6CB37C5
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: E5D9D200AB92D6E3B94CD3D7D6CB37C5
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: e611ef0aa8a9f664ea0e26c57b2c703e
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: e611ef0aa8a9f664ea0e26c57b2c703e
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: E97A59ECCF4EFFF4A857920FB449F22F
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: E97A59ECCF4EFFF4A857920FB449F22F
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: EB940C659E972054EB7A79453A6EF0B9
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: EB940C659E972054EB7A79453A6EF0B9
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: ECD1404F1EF381E4A8E9D96E2513EE63
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: ECD1404F1EF381E4A8E9D96E2513EE63
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: EDEED656CA6FAC745A861A4B3EB47506
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: EDEED656CA6FAC745A861A4B3EB47506
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: F132F0B0A6ECD384AA32773B467F9571
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: F132F0B0A6ECD384AA32773B467F9571
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: F13E2FB2BB8B7A046B05892DE8F0D774
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: F13E2FB2BB8B7A046B05892DE8F0D774
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: F3E910CC2D956844D8B47818506BA217
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: F3E910CC2D956844D8B47818506BA217
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: F4E3B286A696ED244AC1C470AE61874B
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: F4E3B286A696ED244AC1C470AE61874B
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: F6BD9287660A04E49821BC7088C702BB
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: F6BD9287660A04E49821BC7088C702BB
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: FDEF50A6E266FB64A85210E0F3C1C996
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: FDEF50A6E266FB64A85210E0F3C1C996
    MSI (s) (68:B8) [17:04:58:023]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (68:B8) [17:04:58:023]: File will have security applied from OpCode.
    MSI (s) (68:B8) [17:04:58:033]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi' against software restriction policy
    MSI (s) (68:B8) [17:04:58:033]: SOFTWARE RESTRICTION POLICY: c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi has a digital signature
    MSI (s) (68:B8) [17:04:58:088]: SOFTWARE RESTRICTION POLICY: c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi is permitted to run at the 'unrestricted' authorization level.
    MSI (s) (68:B8) [17:04:58:088]: End dialog not enabled
    MSI (s) (68:B8) [17:04:58:088]: Original package ==> c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi
    MSI (s) (68:B8) [17:04:58:088]: Package we're running from ==> c:\Windows\Installer\189a635.msi
    MSI (s) (68:B8) [17:04:58:088]: APPCOMPAT: Compatibility mode property overrides found.
    MSI (s) (68:B8) [17:04:58:088]: APPCOMPAT: looking for appcompat database entry with ProductCode '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'.
    MSI (s) (68:B8) [17:04:58:088]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (68:B8) [17:04:58:093]: MSCOREE not loaded loading copy from system32
    MSI (s) (68:B8) [17:04:58:098]: Machine policy value 'TransformsSecure' is 0
    MSI (s) (68:B8) [17:04:58:098]: User policy value 'TransformsAtSource' is 0
    MSI (s) (68:B8) [17:04:58:098]: Machine policy value 'DisablePatch' is 0
    MSI (s) (68:B8) [17:04:58:098]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (s) (68:B8) [17:04:58:098]: Machine policy value 'DisableLUAPatching' is 0
    MSI (s) (68:B8) [17:04:58:098]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (68:B8) [17:04:58:098]: Enabling baseline caching for this transaction since all active patches are MSI 3.0 style MSPs or at least one MSI 3.0 minor update patch is active
    MSI (s) (68:B8) [17:04:58:098]: APPCOMPAT: looking for appcompat database entry with ProductCode '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'.
    MSI (s) (68:B8) [17:04:58:098]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (68:B8) [17:04:58:098]: Transforms are not secure.
    MSI (s) (68:B8) [17:04:58:098]: Note: 1: 2205 2:  3: Control
    MSI (s) (68:B8) [17:04:58:098]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Users\NULLIU~1\AppData\Local\Temp\MSI9a5a8.LOG'.
    MSI (s) (68:B8) [17:04:58:098]: Command Line: CURRENTDIRECTORY=C:\Users\Nullius Filius\Downloads CLIENTUILEVEL=3 MSICLIENTUSESEXTERNALUI=1 CLIENTPROCESSID=4644
    MSI (s) (68:B8) [17:04:58:098]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{85FFA26D-EE25-43C8-AE73-191F2347856C}'.
    MSI (s) (68:B8) [17:04:58:098]: Product Code passed to Engine.Initialize:           ''
    MSI (s) (68:B8) [17:04:58:098]: Product Code from property table before transforms: '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'
    MSI (s) (68:B8) [17:04:58:098]: Product Code from property table after transforms:  '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'
    MSI (s) (68:B8) [17:04:58:098]: Product not registered: beginning first-time install
    MSI (s) (68:B8) [17:04:58:098]: Product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} is not managed.
    MSI (s) (68:B8) [17:04:58:098]: MSI_LUA: Credential prompt not required, user is an admin
    MSI (s) (68:B8) [17:04:58:098]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
    MSI (s) (68:B8) [17:04:58:098]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (68:B8) [17:04:58:098]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (68:B8) [17:04:58:098]: Adding new sources is allowed.
    MSI (s) (68:B8) [17:04:58:098]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
    MSI (s) (68:B8) [17:04:58:098]: Package name extracted from package path: 'setup.msi'
    MSI (s) (68:B8) [17:04:58:098]: Package to be registered: 'setup.msi'
    MSI (s) (68:B8) [17:04:58:098]: Note: 1: 2205 2:  3: Error
    MSI (s) (68:B8) [17:04:58:098]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (68:B8) [17:04:58:103]: Machine policy value 'DisableMsi' is 0
    MSI (s) (68:B8) [17:04:58:103]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (68:B8) [17:04:58:103]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (68:B8) [17:04:58:103]: Product installation will be elevated because user is admin and product is being installed per-machine.
    MSI (s) (68:B8) [17:04:58:103]: Running product '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}' with elevated privileges: Product is assigned.
    MSI (s) (68:B8) [17:04:58:103]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Users\Nullius Filius\Downloads'.
    MSI (s) (68:B8) [17:04:58:103]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (68:B8) [17:04:58:103]: PROPERTY CHANGE: Adding MSICLIENTUSESEXTERNALUI property. Its value is '1'.
    MSI (s) (68:B8) [17:04:58:103]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '4644'.
    MSI (s) (68:B8) [17:04:58:103]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (68:B8) [17:04:58:103]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is 'c35c031dda612843bc6997001c000814'.
    MSI (s) (68:B8) [17:04:58:103]: RESTART MANAGER: Session opened.
    MSI (s) (68:B8) [17:04:58:103]: TRANSFORMS property is now:
    MSI (s) (68:B8) [17:04:58:103]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
    MSI (s) (68:B8) [17:04:58:103]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming
    MSI (s) (68:B8) [17:04:58:103]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\Favorites
    MSI (s) (68:B8) [17:04:58:108]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Network Shortcuts
    MSI (s) (68:B8) [17:04:58:108]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\Documents
    MSI (s) (68:B8) [17:04:58:108]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
    MSI (s) (68:B8) [17:04:58:113]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Recent
    MSI (s) (68:B8) [17:04:58:113]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (s) (68:B8) [17:04:58:113]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Templates
    MSI (s) (68:B8) [17:04:58:113]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (s) (68:B8) [17:04:58:113]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Local
    MSI (s) (68:B8) [17:04:58:118]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\Pictures
    MSI (s) (68:B8) [17:04:58:118]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (68:B8) [17:04:58:118]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (68:B8) [17:04:58:118]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
    MSI (s) (68:B8) [17:04:58:123]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (s) (68:B8) [17:04:58:123]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (s) (68:B8) [17:04:58:123]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (68:B8) [17:04:58:128]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (68:B8) [17:04:58:128]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    MSI (s) (68:B8) [17:04:58:128]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Start Menu
    MSI (s) (68:B8) [17:04:58:128]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\Desktop
    MSI (s) (68:B8) [17:04:58:133]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
    MSI (s) (68:B8) [17:04:58:133]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
    MSI (s) (68:B8) [17:04:58:133]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
    MSI (s) (68:B8) [17:04:58:138]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
    MSI (s) (68:B8) [17:04:58:138]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Nullius Filius'.
    MSI (s) (68:B8) [17:04:58:138]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'c:\Windows\Installer\189a635.msi'.
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi'.
    MSI (s) (68:B8) [17:04:58:138]: Machine policy value 'MsiDisableEmbeddedUI' is 0
    MSI (s) (68:B8) [17:04:58:138]: EEUI - Disabling MsiEmbeddedUI due to existing external or embedded UI
    MSI (s) (68:B8) [17:04:58:138]: EEUI - Disabling MsiEmbeddedUI for service because it's not a quiet/basic install
    MSI (s) (68:B8) [17:04:58:138]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (68:B8) [17:04:58:138]: Machine policy value 'DisableRollback' is 0
    MSI (s) (68:B8) [17:04:58:138]: User policy value 'DisableRollback' is 0
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
    === Logging started: 5/7/2011  17:04:58 ===
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
    MSI (s) (68:B8) [17:04:58:138]: Doing action: INSTALL
    MSI (s) (68:B8) [17:04:58:138]: Note: 1: 2205 2:  3: ActionText
    Action start 17:04:58: INSTALL.
    MSI (s) (68:B8) [17:04:58:138]: Running ExecuteSequence
    MSI (s) (68:B8) [17:04:58:138]: Doing action: FindRelatedProducts
    MSI (s) (68:B8) [17:04:58:138]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (68:B8) [17:04:58:143]: Using cached product context: machine assigned for product: 8663020007180A44EB446B23AFD487F0
    MSI (s) (68:B8) [17:04:58:143]: Using cached product context: machine assigned for product: 8663020007180A44EB446B23AFD487F0
    MSI (s) (68:B8) [17:04:58:143]: Using cached product context: machine assigned for product: 8663020007180A44EB446B23AFD487F0
    Action start 17:04:58: FindRelatedProducts.
    MSI (s) (68:B8) [17:04:58:143]: PROPERTY CHANGE: Adding UC8DA920D5C41C42E0BF3187BA49984EE4 property. Its value is '{00203668-8170-44A0-BE44-B632FA4D780F}'.
    MSI (s) (68:B8) [17:04:58:143]: Doing action: ValidateProductID
    MSI (s) (68:B8) [17:04:58:143]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: FindRelatedProducts. Return value 1.
    Action start 17:04:58: ValidateProductID.
    MSI (s) (68:B8) [17:04:58:143]: Doing action: SetSHAREDADDINFOLDER
    MSI (s) (68:B8) [17:04:58:143]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: ValidateProductID. Return value 1.
    MSI (s) (68:B8) [17:04:58:143]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SetSHAREDADDINFOLDER'
    MSI (s) (68:B8) [17:04:58:143]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is '(computed)'. Its new value: 'C:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller'.
    Action start 17:04:58: SetSHAREDADDINFOLDER.
    MSI (s) (68:B8) [17:04:58:143]: Doing action: CostInitialize
    MSI (s) (68:B8) [17:04:58:143]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: SetSHAREDADDINFOLDER. Return value 1.
    MSI (s) (68:B8) [17:04:58:143]: Machine policy value 'MaxPatchCacheSize' is 10
    MSI (s) (68:B8) [17:04:58:143]: Baseline: Sorting baselines for {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}.
    MSI (s) (68:B8) [17:04:58:143]: Baseline: New baseline 2.6.0 from transaction.
    MSI (s) (68:B8) [17:04:58:143]: Baseline: Sorted order Native: Order 0.
    MSI (s) (68:B8) [17:04:58:143]: Baseline Data Table:
    MSI (s) (68:B8) [17:04:58:143]: ProductCode: {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} Version: 2.6.0 Attributes: 0 PatchId: Native BaselineId: -2147483648 Order: 0
    MSI (s) (68:B8) [17:04:58:143]: Baseline File Table:
    MSI (s) (68:B8) [17:04:58:143]: Note: 1: 1336 2: 5 3: Q:\
    MSI (s) (68:B8) [17:04:58:143]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'c:\'.
    MSI (s) (68:B8) [17:04:58:143]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: Patch
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: __MsiPatchFileList
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId` 
    MSI (s) (68:B8) [17:04:58:148]: Delta compression fallback method for this product transaction is 'MSI 2.0 legacy obsolescence'
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: Patch
    Action start 17:04:58: CostInitialize.
    MSI (s) (68:B8) [17:04:58:148]: Doing action: FileCost
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: CostInitialize. Return value 1.
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: Class
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: Extension
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: TypeLib
    Action start 17:04:58: FileCost.
    MSI (s) (68:B8) [17:04:58:148]: Doing action: CostFinalize
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: FileCost. Return value 1.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: Patch
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: Condition
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'c:\'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Modifying WindowsFolder property. Its current value is 'C:\Windows\'. Its new value: 'c:\Windows\'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is 'C:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller'. Its new value: 'c:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller\'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Modifying CommonFilesFolder property. Its current value is 'C:\Program Files (x86)\Common Files\'. Its new value: 'c:\Program Files (x86)\Common Files\'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding AIR property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding Versions property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding Version property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding Resources property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (68:B8) [17:04:58:148]: Target path resolution complete. Dumping Directory table...
    MSI (s) (68:B8) [17:04:58:148]: Note: target paths subject to change (via custom actions or browsing)
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: TARGETDIR , Object: c:\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: WindowsFolder , Object: c:\Windows\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: SHAREDADDINFOLDER , Object: c:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: CommonFilesFolder , Object: c:\Program Files (x86)\Common Files\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: AIR , Object: c:\Program Files (x86)\Common Files\Adobe AIR\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: Versions , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: Version , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: Resources , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2228 2:  3: MsiAssembly 4:  SELECT `MsiAssembly`.`Attributes`, `MsiAssembly`.`File_Application`, `MsiAssembly`.`File_Manifest`,  `Component`.`KeyPath` FROM `MsiAssembly`, `Component` WHERE  `MsiAssembly`.`Component_` = `Component`.`Component` AND `MsiAssembly`.`Component_` = ?
    Action start 17:04:58: CostFinalize.
    MSI (s) (68:B8) [17:04:58:153]: Doing action: MigrateFeatureStates
    MSI (s) (68:B8) [17:04:58:153]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: CostFinalize. Return value 1.
    Action start 17:04:58: MigrateFeatureStates.
    MSI (s) (68:B8) [17:04:58:158]: Doing action: InstallValidate
    MSI (s) (68:B8) [17:04:58:158]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: MigrateFeatureStates. Return value 0.
    MSI (s) (68:B8) [17:04:58:158]: PROPERTY CHANGE: Deleting MsiRestartManagerSessionKey property. Its current value is 'c35c031dda612843bc6997001c000814'.
    MSI (s) (68:B8) [17:04:58:158]: Note: 1: 2205 2:  3: Dialog
    MSI (s) (68:B8) [17:04:58:158]: Feature: Runtime; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (68:B8) [17:04:58:158]: Feature: Management; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (68:B8) [17:04:58:158]: Component: Runtime; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (68:B8) [17:04:58:158]: Component: FileTypeRegistration; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (68:B8) [17:04:58:158]: Component: ARPRegistration; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (68:B8) [17:04:58:158]: Component: template.msi; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (68:B8) [17:04:58:158]: Component: template.exe; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (68:B8) [17:04:58:158]: Component: Sentinel; Install

    Thanks! That tip worked perfectly!
    AIR installed without any issues after that.
    Murtaza

  • How do I rename an XE database on a Windows 2003 Server?

    Ok. I'm attempting to rename a freshly installed XE database on a Windows 2003 Server. It looks like there is no getting around the fact that the database gets named "XE" during installation. Because there could potentially be multiple installations of XE in my organization, I thought it'd be a good idea to disambiguate the installations by renaming them to match their function. In this particular case, I'd like to rename the database to "CTXMGMT". It will be a data repository for our Citrix farm administration programs.
    Here is what I've performed thus far:
    1. Installed Oracle 10g XE on one of our Windows 2003 Server, Standard Edition machines.
    2. Verified that the installation was performed correctly by making sure the 'Database Home Page' loads correctly through Internet Explorer, and by performing a few Select statements on the database (i.e. select name from v$database;)
    * * I then began following instructions from this document (http://www.utexas.edu/its/unix/reference/oracledocs/v92/B10501_01/server.920/a96652/ch14.htm#1004735) to rename the database. Note: I'm only trying to change the name of the database, not the ID.
    3. Shutdown the database
    4. Opened the database in MOUNT mode
    5. Ran the NID utility. Here's the actual input/output to/from the NID utility:
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>nid target=sys/manager@xe DBNAME=CTXMGMT SETNAME=YES
    DBNEWID: Release 10.2.0.1.0 - Production on Mon Jul 10 15:55:10 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to database XE (DBID=2476560070)
    Connected to server version 10.2.0
    Control Files in database:
    C:\ORACLEXE\ORADATA\XE\CONTROL.DBF
    Change database name of database XE to CTXMGMT? (Y/[N]) => Y
    Proceeding with operation
    Changing database name from XE to CTXMGMT
    Control File C:\ORACLEXE\ORADATA\XE\CONTROL.DBF - modified
    Datafile C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF - wrote new name
    Datafile C:\ORACLEXE\ORADATA\XE\UNDO.DBF - wrote new name
    Datafile C:\ORACLEXE\ORADATA\XE\SYSAUX.DBF - wrote new name
    Datafile C:\ORACLEXE\ORADATA\XE\USERS.DBF - wrote new name
    Datafile C:\ORACLEXE\ORADATA\XE\TEMP.DBF - wrote new name
    Control File C:\ORACLEXE\ORADATA\XE\CONTROL.DBF - wrote new name
    Instance shut down
    Database name changed to CTXMGMT.
    Modify parameter file and generate a new password file before restarting.
    Succesfully changed database name.
    DBNEWID - Completed succesfully.
    6. After running the NID utility from a separate DOS Window, I attempt to shutdown the newly renamed database from the first DOS Window I used in steps 3 & 4 from above (i.e. to shutdown the database and then start it in MOUNT mode) but I receive this error:
    ORA-03113: end-of-file on communication channel
    This is somewhat expected since the SQL*Plus connection in this window probably had "the bottom pulled out from under it" when the database was renamed.
    However at this point I'm unsure about what state the database is in. Is it down? Is it up? Logic would sort of dictate that the database was left in the MOUNT state, which is the state it was in when the database name was changed. However, the only way I'm able to get back in to the database is by doing the following
    a. Opened a new DOS window
    b. entered "set ORACLE_HOME=C:\oraclexe\app\oracle\product\10.2.0\server"
    c. entered "set ORACLE_SID=XE"
    d. entered " sqlplus "/ as sysdba" "
    e. at SQL> prompt, entered "startup"... which produces:
    SQL> startup;
    ORACLE instance started.
    Total System Global Area 285212672 bytes
    Fixed Size 1287016 bytes
    Variable Size 92277912 bytes
    Database Buffers 188743680 bytes
    Redo Buffers 2904064 bytes
    ORA-01103: database name 'CTXMGMT' in control file is not 'XE'
    SQL>
    From here I don't know what to do. According to the ORA-01103 error message, it looks like I need to change the database name in the control file to "CTXMGMT", but I'm not sure how I should go about that. The control file is a binary file, so I can't just open it up with Notepad and type in a new database name.
    I suspect that even once that is done that the listener.ora (and maybe the tnsnames.ora file?) will have to be edited to include the new "CTXMGMT" name, but I'm not sure how exactly those files should look to incorporate the new database name.
    Also, would the names of services have to be changed in Windows as well? (i.e. Would the Windows service named "OracleServiceXE" have to be renamed to "OracleServiceCTXMGMT" ?)
    In short, I really just need to know how to rename an XE database on Windows appropriately. The steps described above represent as far as I've gotten. If I'm going about it incorrectly could someone shed some light on the correct steps to follow? The more detailed the better. Thanks.
    - Gary

    Okay, I've....
    1) Reinstalled XE, to start from scratch
    2) Went in to SQL*Plus, did a "create pfile from spfile;"
    3) Shutdown the database
    4) Started it up in MOUNT mode
    5) Ran NID, to change the database name from 'XE' to 'CTXMGMT'
    6) Shutdown the database again
    7) Edited the pfile to change the database name (i.e. "db_name='CTXMGMT'")
    8) Started up the database
    And that worked! So that's good... but now my question is:
    How do I change the SID for the database? Currently, the instance name for the database is still 'XE'....
    SQL> select instance_name
    2 from v$instance;
    INSTANCE_NAME
    xe
    I'd like it so a connection could be made to the database with the tnsnames.ora file looking like this:
    CTXMGMT =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(Host = rodin)(Port = 1521))
    (CONNECT_DATA = (SID = CTXMGMT))
    Could someone explain how to get the database to this state? Thanks.
    - Gary

  • XP SP3 & Air installation problems

    I have a problem. My install.log:
    [2011-09-16:14:57:19] Runtime Installer begin with version 2.7.1.19610 on Windows XP x86
    [2011-09-16:14:57:19] Commandline is:
    [2011-09-16:14:57:19] No installed runtime detected
    [2011-09-16:14:57:23] Starting runtime install. Installing runtime version 2.7.1.19610
    [2011-09-16:14:57:23] Reinstalling c:\docume~1\bastion\ustawi~1\temp\air2d0.tmp\setup.msi
    [2011-09-16:14:57:27] Got an unexpected fatal error while quitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2011-09-16:14:57:27] Runtime Installer end with exit code 5

    'Air Zapper' I used later. First, I used the 'Microsoft Fix It'.
    === Verbose logging started: 20-09-2011  11:37:59  Build type: SHIP UNICODE 3.01.4001.5512  Calling process: C:\DOCUME~1\Bastion\USTAWI~1\Temp\AIR182.tmp\Adobe AIR Installer.exe ===
    MSI (c) (B4:18) [11:37:59:866]: Resetting cached policy values
    MSI (c) (B4:18) [11:37:59:866]: Machine policy value 'Debug' is 0
    MSI (c) (B4:18) [11:37:59:866]: ******* RunEngine:
               ******* Product: c:\docume~1\bastion\ustawi~1\temp\air182.tmp\setup.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (c) (B4:18) [11:37:59:866]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (B4:18) [11:37:59:866]: Grabbed execution mutex.
    MSI (c) (B4:18) [11:37:59:881]: Cloaking enabled.
    MSI (c) (B4:18) [11:37:59:881]: Attempting to enable all disabled priveleges before calling Install on Server
    MSI (c) (B4:18) [11:37:59:881]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (DC:F8) [11:37:59:881]: Grabbed execution mutex.
    MSI (s) (DC:80) [11:37:59:881]: Resetting cached policy values
    MSI (s) (DC:80) [11:37:59:881]: Machine policy value 'Debug' is 0
    MSI (s) (DC:80) [11:37:59:881]: ******* RunEngine:
               ******* Product: c:\docume~1\bastion\ustawi~1\temp\air182.tmp\setup.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (s) (DC:80) [11:37:59:881]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (DC:80) [11:37:59:897]: File will have security applied from OpCode.
    MSI (s) (DC:80) [11:37:59:897]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\setup.msi' against software restriction policy
    MSI (s) (DC:80) [11:37:59:897]: SOFTWARE RESTRICTION POLICY: c:\docume~1\bastion\ustawi~1\temp\air182.tmp\setup.msi has a digital signature
    MSI (s) (DC:80) [11:37:59:944]: SOFTWARE RESTRICTION POLICY: c:\docume~1\bastion\ustawi~1\temp\air182.tmp\setup.msi is permitted to run at the 'unrestricted' authorization level.
    MSI (s) (DC:80) [11:37:59:944]: End dialog not enabled
    MSI (s) (DC:80) [11:37:59:944]: Original package ==> c:\docume~1\bastion\ustawi~1\temp\air182.tmp\setup.msi
    MSI (s) (DC:80) [11:37:59:944]: Package we're running from ==> c:\WINDOWS\Installer\4d9d63.msi
    MSI (s) (DC:80) [11:37:59:944]: APPCOMPAT: looking for appcompat database entry with ProductCode '{FDB3B167-F4FA-461D-976F-286304A57B2A}'.
    MSI (s) (DC:80) [11:37:59:944]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (DC:80) [11:37:59:944]: MSCOREE not loaded loading copy from system32
    MSI (s) (DC:80) [11:37:59:944]: Machine policy value 'TransformsSecure' is 0
    MSI (s) (DC:80) [11:37:59:944]: User policy value 'TransformsAtSource' is 0
    MSI (s) (DC:80) [11:37:59:944]: Machine policy value 'DisablePatch' is 0
    MSI (s) (DC:80) [11:37:59:944]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (s) (DC:80) [11:37:59:944]: Machine policy value 'DisableLUAPatching' is 0
    MSI (s) (DC:80) [11:37:59:944]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (DC:80) [11:37:59:944]: APPCOMPAT: looking for appcompat database entry with ProductCode '{FDB3B167-F4FA-461D-976F-286304A57B2A}'.
    MSI (s) (DC:80) [11:37:59:944]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (DC:80) [11:37:59:944]: Transforms are not secure.
    MSI (s) (DC:80) [11:37:59:944]: Note: 1: 2205 2:  3: Control
    MSI (s) (DC:80) [11:37:59:944]: Command Line: CURRENTDIRECTORY=D:\===pobrane=== CLIENTUILEVEL=3 CLIENTPROCESSID=4532
    MSI (s) (DC:80) [11:37:59:944]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{4D1AF709-090E-4C2B-AF74-B38B92647E5D}'.
    MSI (s) (DC:80) [11:37:59:944]: Product Code passed to Engine.Initialize:           ''
    MSI (s) (DC:80) [11:37:59:944]: Product Code from property table before transforms: '{FDB3B167-F4FA-461D-976F-286304A57B2A}'
    MSI (s) (DC:80) [11:37:59:944]: Product Code from property table after transforms:  '{FDB3B167-F4FA-461D-976F-286304A57B2A}'
    MSI (s) (DC:80) [11:37:59:944]: Product not registered: beginning first-time install
    MSI (s) (DC:80) [11:37:59:944]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
    MSI (s) (DC:80) [11:37:59:944]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (DC:80) [11:37:59:944]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (DC:80) [11:37:59:944]: Adding new sources is allowed.
    MSI (s) (DC:80) [11:37:59:944]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
    MSI (s) (DC:80) [11:37:59:944]: Package name extracted from package path: 'setup.msi'
    MSI (s) (DC:80) [11:37:59:944]: Package to be registered: 'setup.msi'
    MSI (s) (DC:80) [11:37:59:944]: Note: 1: 2205 2:  3: Error
    MSI (s) (DC:80) [11:37:59:944]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:944]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:944]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:944]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:944]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:944]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:944]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:959]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:959]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:959]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:959]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:959]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:959]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:959]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:959]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:959]: Note: 1: 2729
    MSI (s) (DC:80) [11:37:59:959]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (DC:80) [11:37:59:959]: Machine policy value 'DisableMsi' is 0
    MSI (s) (DC:80) [11:37:59:959]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (DC:80) [11:37:59:959]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (DC:80) [11:37:59:959]: Product installation will be elevated because user is admin and product is being installed per-machine.
    MSI (s) (DC:80) [11:37:59:959]: Running product '{FDB3B167-F4FA-461D-976F-286304A57B2A}' with elevated privileges: Product is assigned.
    MSI (s) (DC:80) [11:37:59:959]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'D:\===pobrane==='.
    MSI (s) (DC:80) [11:37:59:959]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (DC:80) [11:37:59:959]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '4532'.
    MSI (s) (DC:80) [11:37:59:959]: TRANSFORMS property is now:
    MSI (s) (DC:80) [11:37:59:959]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
    MSI (s) (DC:80) [11:37:59:959]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\Dane aplikacji
    MSI (s) (DC:80) [11:37:59:959]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\Ulubione
    MSI (s) (DC:80) [11:37:59:959]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\NetHood
    MSI (s) (DC:80) [11:37:59:959]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\Moje dokumenty
    MSI (s) (DC:80) [11:37:59:959]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\PrintHood
    MSI (s) (DC:80) [11:37:59:959]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\Recent
    MSI (s) (DC:80) [11:37:59:959]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\SendTo
    MSI (s) (DC:80) [11:37:59:959]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\Szablony
    MSI (s) (DC:80) [11:37:59:959]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Dane aplikacji
    MSI (s) (DC:80) [11:37:59:959]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\Ustawienia lokalne\Dane aplikacji
    MSI (s) (DC:80) [11:37:59:959]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\Moje dokumenty\Moje obrazy
    MSI (s) (DC:80) [11:37:59:959]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Menu Start\Programy\Narzędzia administracyjne
    MSI (s) (DC:80) [11:37:59:975]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Menu Start\Programy\Autostart
    MSI (s) (DC:80) [11:37:59:975]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Menu Start\Programy
    MSI (s) (DC:80) [11:37:59:975]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Menu Start
    MSI (s) (DC:80) [11:37:59:975]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Pulpit
    MSI (s) (DC:80) [11:37:59:975]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\Menu Start\Programy\Narzędzia administracyjne
    MSI (s) (DC:80) [11:37:59:975]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\Menu Start\Programy\Autostart
    MSI (s) (DC:80) [11:37:59:975]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\Menu Start\Programy
    MSI (s) (DC:80) [11:37:59:975]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\Menu Start
    MSI (s) (DC:80) [11:37:59:975]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\Bastion\Pulpit
    MSI (s) (DC:80) [11:37:59:975]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Szablony
    MSI (s) (DC:80) [11:37:59:975]: SHELL32::SHGetFolderPath returned: C:\WINDOWS\Fonts
    MSI (s) (DC:80) [11:37:59:975]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
    MSI (s) (DC:80) [11:37:59:975]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
    MSI (s) (DC:80) [11:37:59:975]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (DC:80) [11:37:59:975]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Bastion'.
    MSI (s) (DC:80) [11:37:59:975]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (DC:80) [11:37:59:975]: PROPERTY CHANGE: Adding COMPANYNAME property. Its value is 'Stanowisko'.
    MSI (s) (DC:80) [11:37:59:975]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'c:\WINDOWS\Installer\4d9d63.msi'.
    MSI (s) (DC:80) [11:37:59:975]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\setup.msi'.
    MSI (s) (DC:80) [11:37:59:975]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (DC:80) [11:37:59:975]: Machine policy value 'DisableRollback' is 0
    MSI (s) (DC:80) [11:37:59:975]: User policy value 'DisableRollback' is 0
    MSI (s) (DC:80) [11:37:59:975]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
    === Logging started: 20-09-2011  11:37:59 ===
    MSI (s) (DC:80) [11:37:59:975]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
    MSI (s) (DC:80) [11:37:59:975]: Doing action: INSTALL
    MSI (s) (DC:80) [11:37:59:975]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (DC:80) [11:37:59:975]: Running ExecuteSequence
    MSI (s) (DC:80) [11:37:59:975]: Doing action: FindRelatedProducts
    MSI (s) (DC:80) [11:37:59:975]: Note: 1: 2205 2:  3: ActionText
    Action start 11:37:59: INSTALL.
    Action start 11:37:59: FindRelatedProducts.
    MSI (s) (DC:80) [11:37:59:991]: Doing action: ValidateProductID
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:37:59: FindRelatedProducts. Return value 1.
    Action start 11:37:59: ValidateProductID.
    MSI (s) (DC:80) [11:37:59:991]: Doing action: SetSHAREDADDINFOLDER
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:37:59: ValidateProductID. Return value 1.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is '(computed)'. Its new value: 'C:\Program Files\Adobe\Flash Player\AddIns\airappinstaller'.
    Action start 11:37:59: SetSHAREDADDINFOLDER.
    MSI (s) (DC:80) [11:37:59:991]: Doing action: CostInitialize
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:37:59: SetSHAREDADDINFOLDER. Return value 1.
    MSI (s) (DC:80) [11:37:59:991]: Machine policy value 'MaxPatchCacheSize' is 10
    Action start 11:37:59: CostInitialize.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'D:\'.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: Patch
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: __MsiPatchFileList
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId` 
    MSI (s) (DC:80) [11:37:59:991]: Doing action: FileCost
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:37:59: CostInitialize. Return value 1.
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: Class
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: Extension
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: TypeLib
    Action start 11:37:59: FileCost.
    MSI (s) (DC:80) [11:37:59:991]: Doing action: CostFinalize
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:37:59: FileCost. Return value 1.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: Patch
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: Condition
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'D:\'.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is 'C:\Program Files\Adobe\Flash Player\AddIns\airappinstaller'. Its new value: 'c:\Program Files\Adobe\Flash Player\AddIns\airappinstaller\'.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Modifying WindowsFolder property. Its current value is 'C:\WINDOWS\'. Its new value: 'c:\WINDOWS\'.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Modifying CommonFilesFolder property. Its current value is 'C:\Program Files\Common Files\'. Its new value: 'c:\Program Files\Common Files\'.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding AIR property. Its value is 'c:\Program Files\Common Files\Adobe AIR\'.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding Versions property. Its value is 'c:\Program Files\Common Files\Adobe AIR\Versions\'.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding Version property. Its value is 'c:\Program Files\Common Files\Adobe AIR\Versions\1.0\'.
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding Resources property. Its value is 'c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:37:59:991]: Target path resolution complete. Dumping Directory table...
    MSI (s) (DC:80) [11:37:59:991]: Note: target paths subject to change (via custom actions or browsing)
    MSI (s) (DC:80) [11:37:59:991]: Dir (target): Key: TARGETDIR          , Object: D:\
    MSI (s) (DC:80) [11:37:59:991]: Dir (target): Key: SHAREDADDINFOLDER          , Object: c:\Program Files\Adobe\Flash Player\AddIns\airappinstaller\
    MSI (s) (DC:80) [11:37:59:991]: Dir (target): Key: WindowsFolder          , Object: c:\WINDOWS\
    MSI (s) (DC:80) [11:37:59:991]: Dir (target): Key: CommonFilesFolder          , Object: c:\Program Files\Common Files\
    MSI (s) (DC:80) [11:37:59:991]: Dir (target): Key: AIR          , Object: c:\Program Files\Common Files\Adobe AIR\
    MSI (s) (DC:80) [11:37:59:991]: Dir (target): Key: Versions          , Object: c:\Program Files\Common Files\Adobe AIR\Versions\
    MSI (s) (DC:80) [11:37:59:991]: Dir (target): Key: Version          , Object: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\
    MSI (s) (DC:80) [11:37:59:991]: Dir (target): Key: Resources          , Object: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\
    MSI (s) (DC:80) [11:37:59:991]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2228 2:  3: MsiAssembly 4:  SELECT `MsiAssembly`.`Attributes`, `MsiAssembly`.`File_Application`, `MsiAssembly`.`File_Manifest`,  `Component`.`KeyPath` FROM `MsiAssembly`, `Component` WHERE  `MsiAssembly`.`Component_` = `Component`.`Component` AND `MsiAssembly`.`Component_` = ?
    Action start 11:37:59: CostFinalize.
    MSI (s) (DC:80) [11:37:59:991]: Doing action: MigrateFeatureStates
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:37:59: CostFinalize. Return value 1.
    Action start 11:37:59: MigrateFeatureStates.
    MSI (s) (DC:80) [11:37:59:991]: Doing action: InstallValidate
    MSI (s) (DC:80) [11:37:59:991]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:37:59: MigrateFeatureStates. Return value 0.
    MSI (s) (DC:80) [11:38:00:006]: Feature: Runtime; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Feature: Management; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: Runtime; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: FileTypeRegistration; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: ARPRegistration; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: template.msi; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: template.exe; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: Sentinel; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: AppInstaller; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: WebKit; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: FlashPlugin; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: Setup; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: RootCertificate; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: TimestampingRootCertificate; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: AIRAppInstaller; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: DRMADOBECPVoucher; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: DRM; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: DRM15; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: DRMAIRVoucher; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: __FileTypeRegistration65; Installed: Null;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: __ARPRegistration65; Installed: Null;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Component: __AIRAppInstaller65; Installed: Null;   Request: Local;   Action: Local
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: Extension
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: Font
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: Class
    Action start 11:37:59: InstallValidate.
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: _RemoveFilePath
    MSI (s) (DC:80) [11:38:00:006]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: Extension
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: Font
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: Class
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2727 2: 
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2727 2: 
    MSI (s) (DC:80) [11:38:00:006]: Doing action: SetARPINSTALLLOCATION
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: InstallValidate. Return value 1.
    MSI (s) (DC:80) [11:38:00:006]: PROPERTY CHANGE: Adding ARPINSTALLLOCATION property. Its value is 'c:\Program Files\Common Files\Adobe AIR\'.
    Action start 11:38:00: SetARPINSTALLLOCATION.
    MSI (s) (DC:80) [11:38:00:006]: Doing action: InstallInitialize
    MSI (s) (DC:80) [11:38:00:006]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: SetARPINSTALLLOCATION. Return value 1.
    MSI (s) (DC:80) [11:38:00:022]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (DC:80) [11:38:00:022]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (DC:80) [11:38:00:022]: BeginTransaction: Locking Server
    MSI (s) (DC:80) [11:38:00:022]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (DC:80) [11:38:00:022]: Server not locked: locking for product {FDB3B167-F4FA-461D-976F-286304A57B2A}
    Action start 11:38:00: InstallInitialize.
    MSI (s) (DC:80) [11:38:00:053]: Doing action: ProcessComponents
    MSI (s) (DC:80) [11:38:00:053]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: InstallInitialize. Return value 1.
    MSI (s) (DC:80) [11:38:00:053]: Note: 1: 2205 2:  3: MsiPatchCertificate
    MSI (s) (DC:80) [11:38:00:053]: LUA patching is disabled: missing MsiPatchCertificate table
    MSI (s) (DC:80) [11:38:00:053]: Resolving source.
    MSI (s) (DC:80) [11:38:00:053]: Resolving source to launched-from source.
    MSI (s) (DC:80) [11:38:00:053]: Setting launched-from source as last-used.
    MSI (s) (DC:80) [11:38:00:053]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\'.
    MSI (s) (DC:80) [11:38:00:053]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\'.
    MSI (s) (DC:80) [11:38:00:053]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{FDB3B167-F4FA-461D-976F-286304A57B2A}'.
    MSI (s) (DC:80) [11:38:00:053]: SOURCEDIR ==> c:\docume~1\bastion\ustawi~1\temp\air182.tmp\
    MSI (s) (DC:80) [11:38:00:053]: SOURCEDIR product ==> {FDB3B167-F4FA-461D-976F-286304A57B2A}
    MSI (s) (DC:80) [11:38:00:053]: Determining source type
    MSI (s) (DC:80) [11:38:00:053]: Source type from package 'setup.msi': 0
    MSI (s) (DC:80) [11:38:00:053]: Source path resolution complete. Dumping Directory table...
    MSI (s) (DC:80) [11:38:00:053]: Dir (source): Key: TARGETDIR          , Object: c:\docume~1\bastion\ustawi~1\temp\air182.tmp\          , LongSubPath:           , ShortSubPath:
    MSI (s) (DC:80) [11:38:00:053]: Dir (source): Key: SHAREDADDINFOLDER          , Object: c:\docume~1\bastion\ustawi~1\temp\air182.tmp\          , LongSubPath:           , ShortSubPath:
    MSI (s) (DC:80) [11:38:00:053]: Dir (source): Key: WindowsFolder          , Object: c:\docume~1\bastion\ustawi~1\temp\air182.tmp\          , LongSubPath:           , ShortSubPath:
    MSI (s) (DC:80) [11:38:00:053]: Dir (source): Key: CommonFilesFolder          , Object: c:\docume~1\bastion\ustawi~1\temp\air182.tmp\          , LongSubPath:           , ShortSubPath:
    MSI (s) (DC:80) [11:38:00:053]: Dir (source): Key: AIR          , Object: c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\          , LongSubPath: Adobe AIR\          , ShortSubPath: AIR\
    MSI (s) (DC:80) [11:38:00:053]: Dir (source): Key: Versions          , Object: c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\          , LongSubPath: Adobe AIR\Versions\          , ShortSubPath: AIR\Versions\
    MSI (s) (DC:80) [11:38:00:053]: Dir (source): Key: Version          , Object: c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\          , LongSubPath: Adobe AIR\Versions\1.0\          , ShortSubPath: AIR\Versions\Version\
    MSI (s) (DC:80) [11:38:00:053]: Dir (source): Key: Resources          , Object: c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\          , LongSubPath: Adobe AIR\Versions\1.0\Resources\          , ShortSubPath: AIR\Versions\Version\R\
    MSI (s) (DC:80) [11:38:00:053]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (DC:80) [11:38:00:053]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (DC:80) [11:38:00:053]: Note: 1: 2205 2:  3: ActionText
    Action start 11:38:00: ProcessComponents.
    MSI (s) (DC:80) [11:38:00:053]: Doing action: UnpublishFeatures
    MSI (s) (DC:80) [11:38:00:053]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: ProcessComponents. Return value 1.
    Action start 11:38:00: UnpublishFeatures.
    MSI (s) (DC:80) [11:38:00:053]: Doing action: RemoveRegistryValues
    MSI (s) (DC:80) [11:38:00:053]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: UnpublishFeatures. Return value 1.
    Action start 11:38:00: RemoveRegistryValues.
    MSI (s) (DC:80) [11:38:00:053]: Doing action: RemoveDuplicateFiles
    MSI (s) (DC:80) [11:38:00:053]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: RemoveRegistryValues. Return value 1.
    Action start 11:38:00: RemoveDuplicateFiles.
    MSI (s) (DC:80) [11:38:00:053]: Doing action: RemoveFiles
    MSI (s) (DC:80) [11:38:00:053]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: RemoveDuplicateFiles. Return value 1.
    MSI (s) (DC:80) [11:38:00:053]: Note: 1: 2205 2:  3: RemoveFile
    MSI (s) (DC:80) [11:38:00:053]: Note: 1: 2205 2:  3: RemoveFile
    Action start 11:38:00: RemoveFiles.
    MSI (s) (DC:80) [11:38:00:053]: Doing action: InstallFiles
    MSI (s) (DC:80) [11:38:00:053]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: RemoveFiles. Return value 0.
    Action start 11:38:00: InstallFiles.
    MSI (s) (DC:80) [11:38:00:069]: Note: 1: 2205 2:  3: Patch
    MSI (s) (DC:80) [11:38:00:069]: Note: 1: 2228 2:  3: Patch 4: SELECT `Patch`.`File_`, `Patch`.`Header`, `Patch`.`Attributes`, `Patch`.`Sequence`, `Patch`.`StreamRef_` FROM `Patch` WHERE `Patch`.`File_` = ? AND `Patch`.`#_MsiActive`=? ORDER BY `Patch`.`Sequence`
    MSI (s) (DC:80) [11:38:00:069]: Note: 1: 2205 2:  3: Error
    MSI (s) (DC:80) [11:38:00:069]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    MSI (s) (DC:80) [11:38:00:069]: Note: 1: 2205 2:  3: MsiSFCBypass
    MSI (s) (DC:80) [11:38:00:069]: Note: 1: 2228 2:  3: MsiSFCBypass 4: SELECT `File_` FROM `MsiSFCBypass` WHERE `File_` = ?
    MSI (s) (DC:80) [11:38:00:069]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (DC:80) [11:38:00:069]: Note: 1: 2228 2:  3: MsiPatchHeaders 4: SELECT `Header` FROM `MsiPatchHeaders` WHERE `StreamRef` = ?
    MSI (s) (DC:80) [11:38:00:069]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (DC:80) [11:38:00:069]: Doing action: DuplicateFiles
    MSI (s) (DC:80) [11:38:00:069]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: InstallFiles. Return value 1.
    Action start 11:38:00: DuplicateFiles.
    MSI (s) (DC:80) [11:38:00:069]: Doing action: WriteRegistryValues
    MSI (s) (DC:80) [11:38:00:069]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: DuplicateFiles. Return value 1.
    Action start 11:38:00: WriteRegistryValues.
    MSI (s) (DC:80) [11:38:00:069]: Doing action: RegisterUser
    MSI (s) (DC:80) [11:38:00:069]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: WriteRegistryValues. Return value 1.
    Action start 11:38:00: RegisterUser.
    MSI (s) (DC:80) [11:38:00:084]: Doing action: RegisterProduct
    MSI (s) (DC:80) [11:38:00:084]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: RegisterUser. Return value 1.
    MSI (s) (DC:80) [11:38:00:084]: Note: 1: 2205 2:  3: Error
    MSI (s) (DC:80) [11:38:00:084]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    Action start 11:38:00: RegisterProduct.
    MSI (s) (DC:80) [11:38:00:084]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
    MSI (s) (DC:80) [11:38:00:084]: Doing action: PublishFeatures
    MSI (s) (DC:80) [11:38:00:084]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: RegisterProduct. Return value 1.
    Action start 11:38:00: PublishFeatures.
    MSI (s) (DC:80) [11:38:00:084]: Doing action: PublishProduct
    MSI (s) (DC:80) [11:38:00:084]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: PublishFeatures. Return value 1.
    MSI (s) (DC:80) [11:38:00:084]: Note: 1: 2205 2:  3: Icon
    MSI (s) (DC:80) [11:38:00:084]: Note: 1: 2228 2:  3: Icon 4: SELECT `Name`, `Data` FROM `Icon`
    Action start 11:38:00: PublishProduct.
    MSI (s) (DC:80) [11:38:00:084]: Doing action: InstallExecute
    MSI (s) (DC:80) [11:38:00:084]: Note: 1: 2205 2:  3: ActionText
    Action ended 11:38:00: PublishProduct. Return value 1.
    MSI (s) (DC:80) [11:38:00:084]: Running Script: C:\WINDOWS\Installer\MSI183.tmp
    MSI (s) (DC:80) [11:38:00:084]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'.
    MSI (s) (DC:80) [11:38:00:084]: Machine policy value 'DisableRollback' is 0
    MSI (s) (DC:80) [11:38:00:084]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (DC:80) [11:38:00:084]: Executing op: Header(Signature=1397708873,Version=301,Timestamp=1060396225,LangId=1033,Platform=0,Scrip tType=1,ScriptMajorVersion=21,ScriptMinorVersion=4,ScriptAttributes=1)
    Action start 11:38:00: InstallExecute.
    MSI (s) (DC:80) [11:38:00:100]: Executing op: ProductInfo(ProductKey={FDB3B167-F4FA-461D-976F-286304A57B2A},ProductName=Adobe AIR,PackageName=setup.msi,Language=1033,Version=34013185,Assignment=1,ObsoleteArg=0,,,Pac kageCode={4D1AF709-090E-4C2B-AF74-B38B92647E5D},,,InstanceType=0,LUASetting=0,RemoteURTIns talls=0)
    MSI (s) (DC:80) [11:38:00:100]: Executing op: DialogInfo(Type=0,Argument=1033)
    MSI (s) (DC:80) [11:38:00:100]: Executing op: DialogInfo(Type=1,Argument=Adobe AIR)
    MSI (s) (DC:80) [11:38:00:100]: Executing op: RollbackInfo(,RollbackAction=Rollback,RollbackDescription=Rolling back action:,RollbackTemplate=[1],CleanupAction=RollbackCleanup,CleanupDescription=Removing backup files,CleanupTemplate=File: [1])
    MSI (s) (DC:80) [11:38:00:100]: Executing op: SetBaseline(Baseline=0,)
    MSI (s) (DC:80) [11:38:00:100]: Executing op: SetBaseline(Baseline=1,)
    MSI (s) (DC:80) [11:38:00:100]: Executing op: ActionStart(Name=ProcessComponents,Description=Updating component registration,)
    MSI (s) (DC:80) [11:38:00:100]: Executing op: ProgressTotal(Total=17,Type=1,ByteEquivalent=24000)
    MSI (s) (DC:80) [11:38:00:100]: Executing op: ComponentRegister(ComponentId={701D2A09-14BE-45F8-9233-1CE0ED0023A9},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:100]: Executing op: ComponentRegister(ComponentId={95CB0A23-64ED-4832-8C2C-8E1671678EA8},KeyPath=02:\Software \Adobe\Adobe AIR\FileTypeRegistration\,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:100]: Executing op: ComponentRegister(ComponentId={12055C63-FC8C-4CC0-81A5-38E057039902},KeyPath=02:\SOFTWARE \Microsoft\Windows\CurrentVersion\Uninstall\Adobe AIR\UninstallString,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:100]: Executing op: ComponentRegister(ComponentId={8E61C856-01FD-4B39-9D18-90B226C2013C},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.msi,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:100]: Executing op: ComponentRegister(ComponentId={F748231B-0260-4E35-BFB8-7FACFDCE1711},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:116]: Executing op: ComponentRegister(ComponentId={DC74C3C6-CAB8-4C49-BE18-5B1DCD0D197E},KeyPath=c:\Program Files\Common Files\Adobe AIR\sentinel,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:116]: Executing op: ComponentRegister(ComponentId={F5EE0D89-3BC5-4752-9EBB-533B036EA809},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:116]: Executing op: ComponentRegister(ComponentId={5281ED57-AD60-4235-A34D-F7571E28FC4C},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:116]: Executing op: ComponentRegister(ComponentId={7A5778CF-5BD0-4931-8224-43B630C24273},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\NPSWF32.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:116]: Executing op: ComponentRegister(ComponentId={1A511B10-11FC-4CAB-9C48-68641F09CF00},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:116]: Executing op: ComponentRegister(ComponentId={76C2FC36-B864-4E7A-9C96-F9B80CDE9A13},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe Root Certificate.cer,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:131]: Executing op: ComponentRegister(ComponentId={5E6626CD-4343-4FF9-8DB0-CFB62473037E},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Thawte Root Certificate.cer,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:131]: Executing op: ComponentRegister(ComponentId={7B2F9BE9-D1F1-4E4D-9AF0-AD085F073B33},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe,State=3,,Disk=1,SharedDllRefCount=0,Binary Type=0)
    MSI (s) (DC:80) [11:38:00:131]: Executing op: ComponentRegister(ComponentId={4E0C3DA9-8FD3-487A-92EB-DDE2CDC7EEAA},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\adobecp.vch,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:131]: Executing op: ComponentRegister(ComponentId={060F1E52-BC43-4D4D-9DAD-197E00DCD5C9},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\AdobeCP.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:131]: Executing op: ComponentRegister(ComponentId={4E7390B9-0423-46B8-AED6-39BB3FB2C8FE},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\AdobeCP15.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0 )
    MSI (s) (DC:80) [11:38:00:147]: Executing op: ComponentRegister(ComponentId={91DAC761-D04A-4404-BC97-E62936576E30},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR.vch,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (DC:80) [11:38:00:147]: Executing op: ActionStart(Name=InstallFiles,Description=Copying new files,Template=File: [1],  Directory: [9],  Size: [6])
    MSI (s) (DC:80) [11:38:00:147]: Executing op: ProgressTotal(Total=31524374,Type=0,ByteEquivalent=1)
    MSI (s) (DC:80) [11:38:00:147]: Executing op: SetTargetFolder(Folder=c:\Program Files\Common Files\Adobe AIR\)
    MSI (s) (DC:80) [11:38:00:147]: Executing op: SetSourceFolder(Folder=1\AIR\|Adobe AIR\)
    MSI (s) (DC:80) [11:38:00:147]: Executing op: ChangeMedia(,MediaPrompt=Please insert the disk: ,,BytesPerTick=32768,CopierType=0,,,,,,IsFirstPhysicalMedia=1)
    MSI (s) (DC:80) [11:38:00:147]: Executing op: FileCopy(SourceName=sentinel,SourceCabKey=SentinelFile,DestName=sentinel,Attributes=512,F ileSize=11,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=62914560,HashOptions= 0,HashPart1=-1608728155,HashPart2=-1204748780,HashPart3=-375235064,HashPart4=-996773537,,)
    MSI (s) (DC:80) [11:38:00:147]: File: c:\Program Files\Common Files\Adobe AIR\sentinel;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:147]: Source for file 'sentinel' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\'.
    MSI (s) (DC:80) [11:38:00:147]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\sentinel
    MSI (s) (DC:80) [11:38:00:147]: Executing op: SetTargetFolder(Folder=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\)
    MSI (s) (DC:80) [11:38:00:147]: Executing op: SetSourceFolder(Folder=1\AIR\Versions\Version\|Adobe AIR\Versions\1.0\)
    MSI (s) (DC:80) [11:38:00:147]: Executing op: FileCopy(SourceName=AIR.dll|Adobe AIR.dll,SourceCabKey=AdobeAIR.dll,DestName=Adobe AIR.dll,Attributes=512,FileSize=10424192,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,Vers ion=2.7.1.19610,Language=1033,InstallMode=62914560,,,,,,,)
    MSI (s) (DC:80) [11:38:00:147]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:147]: Source for file 'Adobe AIR.dll' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\'.
    MSI (s) (DC:80) [11:38:00:163]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll
    MSI (s) (DC:80) [11:38:00:256]: Executing op: FileCopy(SourceName=air.exe|Adobe AIR Application Installer.exe,SourceCabKey=air.exe,DestName=Adobe AIR Application Installer.exe,Attributes=512,FileSize=129920,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0, Version=2.7.1.19610,Language=1033,InstallMode=62914560,,,,,,,)
    MSI (s) (DC:80) [11:38:00:256]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:256]: Source for file 'Adobe AIR Application Installer.exe' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\'.
    MSI (s) (DC:80) [11:38:00:256]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe
    MSI (s) (DC:80) [11:38:00:256]: Executing op: FileCopy(SourceName=air.swf|Adobe AIR Application Installer.swf,SourceCabKey=air.swf,DestName=Adobe AIR Application Installer.swf,Attributes=512,FileSize=722814,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0, ,,InstallMode=62914560,HashOptions=0,HashPart1=-464765826,HashPart2=910006407,HashPart3=37 2961780,HashPart4=1694355518,,)
    MSI (s) (DC:80) [11:38:00:256]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.swf;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:256]: Source for file 'Adobe AIR Application Installer.swf' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\'.
    MSI (s) (DC:80) [11:38:00:272]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.swf
    MSI (s) (DC:80) [11:38:00:272]: Executing op: SetTargetFolder(Folder=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\)
    MSI (s) (DC:80) [11:38:00:272]: Executing op: SetSourceFolder(Folder=1\AIR\Versions\Version\R\|Adobe AIR\Versions\1.0\Resources\)
    MSI (s) (DC:80) [11:38:00:272]: Executing op: FileCopy(SourceName=template.msi,SourceCabKey=template.msi,DestName=template.msi,Attribut es=512,FileSize=20480,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=62914560,H ashOptions=0,HashPart1=1939366618,HashPart2=-1588726703,HashPart3=1290774221,HashPart4=-14 02101394,,)
    MSI (s) (DC:80) [11:38:00:272]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.msi;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:272]: Source for file 'template.msi' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:272]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.msi
    MSI (s) (DC:80) [11:38:00:288]: Executing op: FileCopy(SourceName=template.exe,SourceCabKey=template.exe,DestName=template.exe,Attribut es=512,FileSize=59904,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=62914560,H ashOptions=0,HashPart1=1021049734,HashPart2=-1292725433,HashPart3=-1060348952,HashPart4=-1 208223232,,)
    MSI (s) (DC:80) [11:38:00:288]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.exe;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:288]: Source for file 'template.exe' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:288]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.exe
    MSI (s) (DC:80) [11:38:00:288]: Executing op: FileCopy(SourceName=WebKit.dll|WebKit.dll,SourceCabKey=WebKit.dll,DestName=WebKit.dll,Att ributes=512,FileSize=4298624,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,Version=6531.9.0. 0,Language=1033,InstallMode=62914560,,,,,,,)
    MSI (s) (DC:80) [11:38:00:288]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit.dll;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:288]: Source for file 'WebKit.dll' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:288]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit.dll
    MSI (s) (DC:80) [11:38:00:350]: Executing op: FileCopy(SourceName=NPSWF32.dll|NPSWF32.dll,SourceCabKey=NPSWF32.dll,DestName=NPSWF32.dll ,Attributes=512,FileSize=6276992,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,Version=10.3. 183.5,Language=1033,InstallMode=62914560,,,,,,,)
    MSI (s) (DC:80) [11:38:00:350]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\NPSWF32.dll;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:350]: Source for file 'NPSWF32.dll' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:350]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\NPSWF32.dll
    MSI (s) (DC:80) [11:38:00:413]: Executing op: FileCopy(SourceName=Setup.exe|Adobe AIR Updater.exe,SourceCabKey=Setup.exe,DestName=Adobe AIR Updater.exe,Attributes=512,FileSize=97280,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,Ver sion=2.7.1.19610,Language=1033,InstallMode=62914560,,,,,,,)
    MSI (s) (DC:80) [11:38:00:413]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:413]: Source for file 'Adobe AIR Updater.exe' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:413]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe
    MSI (s) (DC:80) [11:38:00:538]: Executing op: FileCopy(SourceName=setup.swf,SourceCabKey=Setup.swf,DestName=setup.swf,Attributes=512,Fi leSize=743672,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=62914560,HashOptio ns=0,HashPart1=-1866567642,HashPart2=1688251041,HashPart3=-29532075,HashPart4=-164696139,, )
    MSI (s) (DC:80) [11:38:00:538]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\setup.swf;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:538]: Source for file 'setup.swf' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:538]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\setup.swf
    MSI (s) (DC:80) [11:38:00:553]: Executing op: FileCopy(SourceName=styles.swf|stylesNative.swf,SourceCabKey=styles.swf,DestName=stylesNa tive.swf,Attributes=512,FileSize=234209,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,Inst allMode=62914560,HashOptions=0,HashPart1=1832996879,HashPart2=1588363507,HashPart3=1280138 488,HashPart4=1664738872,,)
    MSI (s) (DC:80) [11:38:00:553]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\stylesNative.swf;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:553]: Source for file 'stylesNative.swf' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:553]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\stylesNative.swf
    MSI (s) (DC:80) [11:38:00:553]: Executing op: FileCopy(SourceName=Adobe.cer|Adobe Root Certificate.cer,SourceCabKey=Adobe.cer,DestName=Adobe Root Certificate.cer,Attributes=512,FileSize=1189,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0, ,,InstallMode=62914560,HashOptions=0,HashPart1=1066496191,HashPart2=181851896,HashPart3=14 01093703,HashPart4=-1268940496,,)
    MSI (s) (DC:80) [11:38:00:553]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe Root Certificate.cer;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:553]: Source for file 'Adobe Root Certificate.cer' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:553]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe Root Certificate.cer
    MSI (s) (DC:80) [11:38:00:553]: Executing op: FileCopy(SourceName=Thawte.cer|Thawte Root Certificate.cer,SourceCabKey=Thawte.cer,DestName=Thawte Root Certificate.cer,Attributes=512,FileSize=677,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,, ,InstallMode=62914560,HashOptions=0,HashPart1=1903847039,HashPart2=2020207571,HashPart3=34 0892192,HashPart4=551191453,,)
    MSI (s) (DC:80) [11:38:00:553]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Thawte Root Certificate.cer;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:553]: Source for file 'Thawte Root Certificate.cer' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:569]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Thawte Root Certificate.cer
    MSI (s) (DC:80) [11:38:00:569]: Executing op: FileCopy(SourceName=aai.exe|airappinstaller.exe,SourceCabKey=airappinstaller.exe,DestName =airappinstaller.exe,Attributes=512,FileSize=53632,PerTick=32768,,VerifyMedia=1,,,,,CheckC RC=0,Version=2.7.0.19180,Language=1033,InstallMode=62914560,,,,,,,)
    MSI (s) (DC:80) [11:38:00:569]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:569]: Source for file 'airappinstaller.exe' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:569]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe
    MSI (s) (DC:80) [11:38:00:585]: Executing op: FileCopy(SourceName=digest.s,SourceCabKey=digest.s,DestName=digest.s,Attributes=512,FileS ize=2836,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=62914560,HashOptions=0, HashPart1=457652043,HashPart2=-1398305919,HashPart3=-1026138743,HashPart4=-1658209433,,)
    MSI (s) (DC:80) [11:38:00:585]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\digest.s;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:585]: Source for file 'digest.s' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:585]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\digest.s
    MSI (s) (DC:80) [11:38:00:585]: Executing op: FileCopy(SourceName=adobecp.vch,SourceCabKey=adobecp.vch,DestName=adobecp.vch,Attributes= 512,FileSize=288579,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=62914560,Has hOptions=0,HashPart1=1369680023,HashPart2=-761015657,HashPart3=-1316908143,HashPart4=-9514 69804,,)
    MSI (s) (DC:80) [11:38:00:585]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\adobecp.vch;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:585]: Source for file 'adobecp.vch' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:585]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\adobecp.vch
    MSI (s) (DC:80) [11:38:00:585]: Executing op: FileCopy(SourceName=AdobeCP.dll,SourceCabKey=adobecp.dll,DestName=AdobeCP.dll,Attributes= 512,FileSize=3837824,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,Version=2.0.0.17,Language =1033,InstallMode=62914560,,,,,,,)
    MSI (s) (DC:80) [11:38:00:585]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\AdobeCP.dll;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:585]: Source for file 'AdobeCP.dll' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:585]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\AdobeCP.dll
    MSI (s) (DC:80) [11:38:00:850]: Executing op: FileCopy(SourceName=AdbeCP15.dll|AdobeCP15.dll,SourceCabKey=adobecp15.dll,DestName=AdobeC P15.dll,Attributes=512,FileSize=3507584,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,Versio n=1.5.0.12,Language=1033,InstallMode=62914560,,,,,,,)
    MSI (s) (DC:80) [11:38:00:850]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\AdobeCP15.dll;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:00:850]: Source for file 'AdobeCP15.dll' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:00:850]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\AdobeCP15.dll
    MSI (s) (DC:80) [11:38:01:413]: Executing op: FileCopy(SourceName=AdobeAIR.vch|Adobe AIR.vch,SourceCabKey=AdobeAIR.vch,DestName=Adobe AIR.vch,Attributes=512,FileSize=823955,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,Inst allMode=62914560,HashOptions=0,HashPart1=1205274208,HashPart2=1759909155,HashPart3=1464224 915,HashPart4=-798146134,,)
    MSI (s) (DC:80) [11:38:01:413]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR.vch;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:01:413]: Source for file 'Adobe AIR.vch' is uncompressed, at 'c:\docume~1\bastion\ustawi~1\temp\air182.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:01:413]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR.vch
    MSI (s) (DC:80) [11:38:01:428]: Executing op: CacheSizeFlush(,)
    MSI (s) (DC:80) [11:38:01:428]: Executing op: InstallProtectedFiles(AllowUI=0)
    MSI (s) (DC:80) [11:38:01:428]: Executing op: ActionStart(Name=DuplicateFiles,Description=Creating duplicate files,Template=File: [1],  Directory: [9],  Size: [6])
    MSI (s) (DC:80) [11:38:01:428]: Executing op: ProgressTotal(Total=56468,Type=0,ByteEquivalent=1)
    MSI (s) (DC:80) [11:38:01:428]: Executing op: SetSourceFolder(Folder=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\)
    MSI (s) (DC:80) [11:38:01:428]: Executing op: SetTargetFolder(Folder=c:\Program Files\Adobe\Flash Player\AddIns\airappinstaller\)
    MSI (s) (DC:80) [11:38:01:428]: Executing op: FileCopy(SourceName=airappinstaller.exe,,DestName=airappinstaller.exe,Attributes=512,File Size=53632,PerTick=0,IsCompressed=0,VerifyMedia=0,,,,,CheckCRC=0,Version=2.7.0.19180,Langu age=1033,InstallMode=262144,,,,,,,)
    MSI (s) (DC:80) [11:38:01:428]: File: c:\Program Files\Adobe\Flash Player\AddIns\airappinstaller\airappinstaller.exe;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:01:428]: Source for file 'airappinstaller.exe' is uncompressed, at 'c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:01:444]: Note: 1: 2318 2: c:\Program Files\Adobe\Flash Player\AddIns\airappinstaller\airappinstaller.exe
    MSI (s) (DC:80) [11:38:01:444]: Executing op: SetSourceFolder(Folder=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\)
    MSI (s) (DC:80) [11:38:01:444]: Executing op: SetTargetFolder(Folder=c:\Program Files\Adobe\Flash Player\AddIns\airappinstaller\)
    MSI (s) (DC:80) [11:38:01:444]: Executing op: FileCopy(SourceName=digest.s,,DestName=digest.s,Attributes=512,FileSize=2836,PerTick=0,Is Compressed=0,VerifyMedia=0,,,,,CheckCRC=0,,,InstallMode=262144,,,,,,,)
    MSI (s) (DC:80) [11:38:01:444]: File: c:\Program Files\Adobe\Flash Player\AddIns\airappinstaller\digest.s;          To be installed;          Won't patch;          No existing file
    MSI (s) (DC:80) [11:38:01:444]: Source for file 'digest.s' is uncompressed, at 'c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (DC:80) [11:38:01:444]: Note: 1: 2318 2: c:\Program Files\Adobe\Flash Player\AddIns\airappinstaller\digest.s
    MSI (s) (DC:80) [11:38:01:444]: Executing op: ActionStart(Name=WriteRegistryValues,Description=Writing system registry values,Template=Key: [1], Name: [2], Value: [3])
    MSI (s) (DC:80) [11:38:01:444]: Executing op: ProgressTotal(Total=18,Type=1,ByteEquivalent=13200)
    MSI (s) (DC:80) [11:38:01:444]: Executing op: RegOpenKey(,Key=AIR.InstallerPackage\shell\open,,BinaryType=0)
    MSI (s) (DC:80) [11:38:01:444]: Executing op: RegAddValue(,Value=Install,)
    MSI (s) (DC:80) [11:38:01:444]: Executing op: RegOpenKey(,Key=AIR.InstallerPackage\shell\open\command,,BinaryType=0)
    MSI (s) (DC:80) [11:38:01:444]: Executing op: RegAddValue(,Value=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe "%1",)
    MSI (s) (DC:80) [11:38:01:444]: Executing op: RegOpenKey(,Key=.air,,BinaryType=0)
    MSI (s) (DC:80) [11:38:01:444]: Executing op: RegAddValue(,Value=AIR.InstallerPackage,)
    MSI (s) (DC:80) [11:38:01:460]: Executing op: RegAddValue(Name=Content Type,Value=application/vnd.adobe.air-application-installer-package+zip,)
    MSI (s) (DC:80) [11:38:01:460]: Executing op: RegOpenKey(,Key=AIR.InstallerPackage,,BinaryType=0)
    MSI (s) (DC:80) [11:38:01:460]: Executing op: RegAddValue(,Value=Installer Package,)
    MSI (s) (DC:80) [11:38:01:460]: Executing op: RegOpenKey(,Key=AIR.InstallerPackage\DefaultIcon,,BinaryType=0)
    MSI (s) (DC:80) [11:38:01:460]: Executing op: RegAddValue(,Value=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe,1,)
    MSI (s) (DC:80) [11:38:01:460]: Executing op: RegOpenKey(Root=-2147483646,Key=Software\Adobe\Adobe AIR\FileTypeRegistration,,BinaryType=0)
    MSI (s) (DC:80) [11:38:01:460]: Executing op: RegAddValue(,,)
    MSI (s) (DC:80) [11:38:01:460]: Executing op: RegOpenKey(Root=-2147483646,Key=SOFTWARE\Classes\.air\OpenWithProgids,,BinaryType=0)
    MSI (s) (DC:80) [11:38:01:460]: Executing op: RegAddValue(Name=AIR.InstallerPackage,,)
    MSI (s) (DC:80) [11:38:01:460]: Executing op: RegOpenKey(Root=-2147483646,Key=SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe AIR,,BinaryType=0)
    MSI (s) (DC:80) [11:38:01:460]: Executing op: RegAddValue(Name=DisplayIcon,Value=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe,)
    MSI (s) (DC:80) [11:38:01:460]: Executing op: RegAddValue(Name=DisplayName,Value=Adobe AIR,)
    MSI (s) (DC:80) [11:38:01:475]: Executing op: RegAddValue(Name=DisplayVersion,Value=2.7.1.19610,)
    MSI (s) (DC:80) [11:38:01:475]: Executing op: RegAddValue(Name=InstallLocation,Value=c:\Program Files\Common Files\Adobe AIR\,)
    MSI (s) (DC:80) [11:38:01:475]: Executing op: RegAddValue(Name=NoModify,Value=#1,)
    MSI (s) (DC:80) [11:38:01:475]: Executing op: RegAddValue(Name=NoRepair,Value=#1,)
    MSI (s) (DC:80) [11:38:01:475]: Executing op: RegAddValue(Name=Publisher,Value=Adobe Systems Incorporated,)
    MSI (s) (DC:80) [11:38:01:475]: Executing op: RegAddValue(Name=UninstallString,Value=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe -arp:uninstall,)
    MSI (s) (DC:80) [11:38:01:475]: Executing op: RegAddValue(Name=VersionMajor,Value=#2,)
    MSI (s) (DC:80) [11:38:01:491]: Executing op: RegAddValue(Name=VersionMinor,Value=#7,)
    MSI (s) (DC:80) [11:38:01:491]: Executing op: ActionStart(Name=RegisterProduct,Description=Registering product,Template=[1])
    MSI (s) (DC:80) [11:38:01:491]: Executing op: ChangeMedia(,MediaPrompt=Please insert the disk: ,,BytesPerTick=0,CopierType=0,,,,,,IsFirstPhysicalMedia=1)
    MSI (s) (DC:80) [11:38:01:491]: Executing op: DatabaseCopy(DatabasePath=c:\WINDOWS\Installer\4d9d63.msi,ProductCode={FDB3B167-F4FA-461D -976F-286304A57B2A},,,)
    MSI (s) (DC:80) [11:38:01:491]: Note: 1: 1402 2: UNKNOWN\Products\761B3BDFAF4FD16479F68236405AB7A2\InstallProperties 3: 2
    MSI (s) (DC:80) [11:38:01:803]: Executing op: ProductRegister(UpgradeCode={8DA920D5-C41C-42E0-BF31-87BA49984EE4},VersionString=2.7.1.19 610,,,InstallLocation=c:\Program Files\Common Files\Adobe AIR\,InstallSource=c:\docume~1\bastion\ustawi~1\temp\air182.tmp\,Publisher=Adobe Systems Incorporated,,,,,,,,,,,SystemComponent=yes,EstimatedSize=30859)
    MSI (s) (DC:80) [11:38:01:850]: Executing op: ProductCPDisplayInfoRegister()
    MSI (s) (DC:80) [11:38:01:866]: Executing op: ActionStart(Name=PublishFeatures,Description=Publishing Product Features,Template=Feature: [1])
    MSI (s) (DC:80) [11:38:01:866]: Executing op: FeaturePublish(Feature=Runtime,,Absent=2,Component==Ko%L5ZPQ=@WM%q4L^F_3$fiUV'[email protected] @7QTOPxd+U.AxiPM`sizQ(YO]qoAJ,T@xH{L,E]qTPN@U&xnMKw=gjh(7Kgp+&A7$TBXtj?9iM.?DcA0h@BG8COzNV T?tC5Yc}gl&MjMyN+)lQ_@*U$?Hvz*=!?2M2NdL{6AdNBNdljYA)2WsDFMGldAB45icA`VRPXtAZO-132Aj[,l%RpW O4jA3*ANF&A?hxhvqWxcx_XjTy$n?qp@a?wTPO2wri0U56ANYzf=MOm2e3IKtziqYsV2s4r93~bO1Tz)X3)
    MSI (s) (DC:80) [11:38:01:866]: Executing op: FeaturePublish(Feature=Management,,Absent=2,Component=bS30XJhD5?+z39*4Tj2_TUBl(jYoa@iXP(q t0{o!)
    MSI (s) (DC:80) [11:38:01:866]: Executing op: ActionStart(Name=PublishProduct,Description=Publishing product information,)
    MSI (s) (DC:80) [11:38:01:881]: Executing op: CleanupConfigData()
    MSI (s) (DC:80) [11:38:01:881]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\ Products\761B3BDFAF4FD16479F68236405AB7A2\Patches 3: 2
    MSI (s) (DC:80) [11:38:01:881]: Executing op: RegisterPatchOrder(Continue=0,SequenceType=1,Remove=0)
    MSI (s) (DC:80) [11:38:01:881]: Note: 1: 1402 2: UNKNOWN\Products\761B3BDFAF4FD16479F68236405AB7A2\Patches 3: 2
    MSI (s) (DC:80) [11:38:01:881]: Executing op: ProductPublish(PackageKey={4D1AF709-090E-4C2B-AF74-B38B92647E5D})
    MSI (s) (DC:80) [11:38:01:881]: Note: 1: 1402 2: UNKNOWN\Installer\Products\761B3BDFAF4FD16479F68236405AB7A2 3: 2
    MSI (s) (DC:80) [11:38:01:881]: Note: 1: 1402 2: UNKNOWN\Installer\Products\761B3BDFAF4FD16479F68236405AB7A2 3: 2
    MSI (s) (DC:80) [11:38:01:881]: Note: 1: 1402 2: UNKNOWN\Installer\Products\761B3BDFAF4FD16479F68236405AB7A2 3: 2
    MSI (s) (DC:80) [11:38:01:881]: Note: 1: 1402 2: UNKNOWN\Installer\Products\761B3BDFAF4FD16479F68236405AB7A2 3: 2
    MSI (s) (DC:80) [11:38:01:881]: Note: 1: 1402 2: UNKNOWN

Maybe you are looking for