Including files in an AIR installer

I have an AIR project with additional resources (XML etc.) stored in the bin-debug folder.
I'm using Flash Builder Burrito (the app needs to be deployed to Android also).
When building via the "Release Build" option, I get to the "Package Contents" step and none of my files are available (only the SWFs and the AIR manifest file are there).
It would appear that behind the scenes, Flash Builder creates a "bin-release" folder and builds into it, and this is the folder whose contents I am seeing in the "Package Contents" page. After building the AIR file, this folder is deleted.
For workflow reasons I do not have the "Copy non-embedded files..." option selected, I don't think this is an uncommon configuration but I fear that it is incompatible with the AIR deployment workflow.
I have got the files selected in the Project Settings > Actionscript Build Packaging panel, but this doesn't appear to do anything.
Any help would be greatly appreciated.

Hi,
AIR doesn't support ActiveX controls or displaying MS Office
files. :)
For dynamic PDF generation, take a look at
AlivePDF.
> I realize this might be a stretch
Definitely, dude. Definitely. :)

Similar Messages

  • 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.

  • Adobe air installation file

    I am trying to download caller id on my pc. This download needs the adobe air installation file in order for it to download.
    I have adobe air, but when I download for the caller id to be  installed I get this error message; "Application could not be installed because the installer file is damaged.  Try to obtain a new installer from the application author". I noticed on the forum that a few members are having the same problem. If it has been solved, please pass it on to me.
    Just an afterthought, I have Comcast triple play which includes the pc caller id. Comcast does not repair computers, therefore I'm hoping this forum can help me. 
    Thank you,
    Teri Rossi

    I don't quite understand. Do I have to post my question again in air installation forum. Or are you telling me it's been moved to the correct forum. I thought I did put my question in that forum. Please explain, I'm new here.
    Teri Rossi

  • How do I work around large AIR Installer file for app updates?

    I develop AIR apps which often come with many included files (pdf, doc, swf, images, etc).  These get quite large, Total Air installer size measured in Gigs.   Distribution is via DVD.  Currently I create sub-folders under my project and place the assets.  Works fine.
    The rub comes when I want to issue program updates.  The AIR update process would be great if I could just update my main program swf, but what I'm finding is that even if I'm doing a minor code update I still have to create this same multi-gigabyte AIR installer.
    If I were using a Visual Studio installer I'd just include some sort of run-once that would copy all the assets after the installer completed.  Then when building an update it would skip the 'copy all' part...but I can't see any way to do something similar with the AIR installer.
    So, to summarize, I'd like to be able to issue updates to my main AIR SWF without including all the assets again.  Any thoughts?
    Thanks in advance,
    Greg.

    No, I don't have any recommendations. You would need to sign up for the AIR redistribution program. When you do this you gain access to some tools that help the process. http://www.adobe.com/products/air/runtime_distribution1.html
    The only warning is that you will have to create an installer for each of your target platforms (unless you find an installer product that is also cross-platform, of course).

  • 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,

  • Installer File is Corrupted .air

    Hey so I've got that lovely problem where I can't update an .air application.
    I've tried restarting my computer, uninstalling and reinstalling Adobe Air, running the Air installer .exe file with administrative privilages and in differing compatibility modes, and finally uninstalling the application, including deleting the empty folder it left in my program files.
    Now not only can I not update the application, but I can't get it back at all...
    I'm running Windows 7 64 bit, and I'm attempting to run the installer from a local drive.
    Here is a copy of the installer log:
    [2012-09-01:13:30:45] Unpackaging file:///C:/Users/Mike/Downloads/Minerva-3-3-3.air to C:\Users\Mike\AppData\Local\Temp\fla8F66.tmp
    [2012-09-01:13:30:45] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="truncated or corrupt" errorID=0]
    [2012-09-01:13:30:48] Application Installer end with exit code 7

    Oh hey I found an AWESOME workaround on Stack Overflow.
    Turns out if you can find another computer to install the app on, you can take the folder it makes (in my case the course vector folder) in Program files (windows 7 64 bit is the x86 program files) and copy it.
    Then assuming you have Adobe Air installed on the computer you wanted the app on (which if you spent a few hours trying to install an adobe air app without the program then I can't help you...) you can simply paste the folder into the same location and it'll work perfectly! X3

  • 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); 

  • Air Installer Copying and or extracting external files

    Is there a way to have an air installer copy an external file to the installation directory?  We are using video data in our app and the resulting air application is just far to big (i.e installer will not run on the end users machine).  So I am thinking that perhaps the air installer can install the app then copy any required media/data from external files to the correct directory.
    Can this be done?

    I have done something similar with a document management app.
    Once the app was installed it would check for a DVD / Thumb drive and silently copy all the documents from another drive to the (ASD) AppStorageDirectory.
    You could also download your media files to the AppStorageDirectory as well.
    When my app gets updated I have a function that deletes obsolete files from the ADS and leave the files I need to persist untouched.
    Here is a snippet that reads available drives and looks for a specific named drive and then creates an Array listing all the files which can
    then be copied using  SOURCE.copyToAsync(DESTINATION)...
    var os:String = Capabilities.os.substr(0, 3).toLowerCase();
             var currentDrives:Array = (os=="mac") ? new File('/Volumes/').getDirectoryListing() : File.getRootDirectories() ;
             var fileList:Array;
             var fileCount:int = 0;
             var fileListArr:Array = new Array();
             for each(var file:File in currentDrives){
                 //trace ("Drive: " + file.name + " Size: " + file.size);
                 if(file.name.toString().indexOf("KnownNameofDVD")>-1){
                     trace ("Drive: " + file.name + " Size: " + file.size);
                      fileList = (os=="mac") ? new  File('/Volumes/'+file.name).getDirectoryListing() :  new  File(file.name.getDirectoryListing()
                     for(var l:int = 0 ; l<fileList.length; l++){
                         //trace(fileList[l].nativePath)                    
                         fileCount++;
                         fileListArr.push(fileList[l].nativePath.toString())

  • Air Installer file is damaged could not install

    Hi:
    I could not install a release build in Flash Builder 4 using latest release of air installer package:
    The following is the log of the install in Windows 7
    [2011-07-12:12:15:51] Application Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-07-12:12:15:51] Commandline is: C:\Users\George\Desktop\XX\_XC\XCG\BGDB.air
    [2011-07-12:12:15:51] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-07-12:12:15:51] Unpackaging file:///C:/Users/George/Desktop/XX/_XC/XCG/BGDB.air to C:\Users\George\AppData\Local\Temp\fla462D.tmp
    [2011-07-12:12:15:51] Package signature validation failed
    [2011-07-12:12:15:51] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="invalid package signature" errorID=5022]
    [2011-07-12:12:15:57] Application Installer end with exit code 7
    I have another application developed in Flex Builder 3 and a release build with the same installer has no problem.
    I appreciate you reading this and trying to help me

    Try to download that again or disable the antivirus while downloading and after that enable it. Further try to run it in administrator mode if possible.

  • Build Installer with include file 2009

    Does LV 2009 let you include files, i.e. *.doc or *.txt, in the installer build? I almost certain this was possible in LV 8.*. I don't see where I can add files outside of source code. I can only add directories...
    Solved!
    Go to Solution.

    Oh gee thanks, stupid me. I'll try that....
    Thanks

  • Create installer file to install AIR and my application

    I want to create an installer file that will package the AIR runtime along with my AIR application and install both for the user.  I would also like this installer file to install the Java runtime and a Java application that my AIR app will interact with via AIR's Native Process API.  This thread mentions many possible installers:
    http://stackoverflow.com/questions/759855/what-are-good-installanywhere-replacements-for-i nstalling-a-java-ee-application
    I'm wondering if any of you have had to do this with AIR applications and have a recommended installer or know of any reasons this might not work well with AIR apps. 
    Thanks!

    One thing you can do is bundle the JRE installer with your AIR app.  Your app installer will be the usual AIR installer and only install the AIR portion.  The first time the user runs the AIR app, the AIR app can validate the JRE version and if it's not adequate then it can initiate the JRE installer.  The is sometimes a nice way to go because you can continue using the AIR update framework and push newer versions of the JRE installer with new versions of your AIR app, if necessary.  Here's more info:
    http://aaronhardy.com/flex/javautils-detecting-and-installing-java-from-air/

  • Problem creating an AIR installer (.exe) from a .fla file.

    Hey everyone,
    I am trying to create an Adobe AIR installer(.exe). I already
    created the .fla file and tested it. It didn't seem to work and
    gave me the error of
    "You cannot debug this SWF because it does not contain
    ActionScript" and acc. to this link
    http://www.actionscript.org/forums/archive/index.php3/t-168154.html
    I created a new environment variable called JAVA_TOOL_OPTIONS
    of -Xmx256M. And then the .fla file seemed to work . Apparently
    there is too much code in my .fla file with as many as 20 videos
    (.flv) and lot of radio-buttons ( I mean A lot of them !!! )...
    Now with the .fla file working, when I am trying to create an
    AIR installer it is throwing the error,
    " Error creating AIR file. Picked up JAVA_TOOL_OPTIONS: -Xmx256M
    so I am not able to create the AIR Installer. and If I change
    back the -Xmx 256M then my .fla file won't work. So what do I do
    now ? I somehow removed the above -Xmx 256M variable and created a
    AIR installer with a self-signed certificate and when I try to
    install that AIR installer, I get another error message,
    "The application could not be installed. Try installing it
    again. If the problem persists, contact the application author.
    Error# 0".
    So I have 2 questions:
    1. how do I create this AIR installer(.exe) and make it work
    as a .exe file and run it without having Adobe flash CS3 installed
    on another computer and please help me in my case as above.
    2. Also, would I need to buy a digital certificate to create
    the AIR installer or can I use a self-signed certificate to create
    an AIR installer and use it to install the AIR application on a few
    computers ? Please help
    Axe

    "Axe_AP" <[email protected]> wrote in
    message
    news:gqs5k7$cjp$[email protected]..
    > Hey everyone,
    >
    > I am trying to create an Adobe AIR installer(.exe). I
    already created the
    > .fla
    > file and tested it. It didn't seem to work and gave me
    the error of
    >
    "You
    > cannot debug this SWF because it does not contain
    ActionScript" and
    > acc. to
    > this link
    >
    http://www.actionscript.org/forums/archive/index.php3/t-168154.html
    >
    > I created a new environment variable called
    JAVA_TOOL_OPTIONS of -Xmx256M.
    > And
    > then the .fla file seemed to work . Apparently there is
    too much code in
    > my
    > .fla file with as many as 20 videos (.flv) and lot of
    radio-buttons ( I
    > mean A
    > lot of them !!! )...
    >
    > Now with the .fla file working, when I am trying to
    create an AIR
    > installer it
    > is throwing the error,
    " Error creating AIR file. Picked up
    > JAVA_TOOL_OPTIONS: -Xmx256M ? .
    > so I am not able to create the AIR Installer. and If I
    change back
    > the -Xmx
    > 256M then my .fla file won't work. So what do I do now ?
    I somehow removed
    > the
    > above -Xmx 256M variable and created a AIR installer
    with a self-signed
    > certificate and when I try to install that AIR
    installer, I get another
    > error
    > message,
    "The application could not be installed. Try installing it
    > again.
    > If the problem persists, contact the application author.
    Error# 0".
    >
    > So I have 2 questions:
    >
    > 1. how do I create this AIR installer(.exe) and make it
    work as a .exe
    > file
    > and run it without having Adobe flash CS3 installed on
    another computer
    > and
    > please help me in my case as above.
    >
    > 2. Also, would I need to buy a digital certificate to
    create the AIR
    > installer
    > or can I use a self-signed certificate to create an AIR
    installer and use
    > it to
    > install the AIR application on a few computers ? Please
    help
    This forum is for people seeking help with the Flex Framework
    and/or Flex
    builder. You might want to try one of the Flash forums.

  • Air for IOS Including files in IPA (SWF)

    I've added a SWF file to the included files list in Publish Settings that I would like to load.
    Any ideas on how to get it to work?
    Here is my code:
    import flash.net.URLRequest;
    import flash.display.Loader;
    import flash.events.Event;
    import flash.events.ProgressEvent;
    import flash.filesystem.File;
    function startLoad()
    var file:File = File.applicationDirectory.resolvePath("SomeFile.swf");
    var mLoader:Loader = new Loader();
    var mRequest:URLRequest = new URLRequest(file.url);
    var context:LoaderContext = new LoaderContext();
    context.checkPolicyFile = true;
    context.securityDomain = SecurityDomain.currentDomain;
    context.applicationDomain = ApplicationDomain.currentDomain;
    mLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    mLoader.contentLoaderInfo.uncaughtErrorEvents.addEventListener(UncaughtErrorEvent.UNCAUGHT_ERROR, handleGlobalErrors);
    mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompleteHandler);
    mLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgressHandler);
    try {
         mLoader.load(mRequest, context);
    } catch (error:Error) {
         mLoader.load(mRequest);
    function handleGlobalErrors( evt : UncaughtErrorEvent ):void
         evt.preventDefault();
    function onCompleteHandler(loadEvent:Event)
         addChild(loadEvent.currentTarget.content);
    function onProgressHandler(mProgress:ProgressEvent)
         var percent:Number = mProgress.bytesLoaded/mProgress.bytesTotal;
         trace(percent);
    function ioError(event:ErrorEvent):void {
    startLoad();

    Hi,
    Are you doing an ipa-debug or ipa-debug-interpreter?
    When you go to Flash Builder -> debug configuration -> on device, under packaging method, do you select "standard" or "Fast" ?
    It should work in Fast but not in Standard.
    Please let me know if its otherwise.
    Thanks,
    Amish.

  • 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

  • Help: Adobe AIR installer has encountered a problem and needs to close.

    When I run the Adobe AIR installer i always get this window...
    I'm running Windows XP SP3
    How do i solve this problem? Thanks.

    Are you installing AIR installer or running Installer. If your running it make sure you click on the AIR Install package file, not just using installer. Im not really sure what you can do.

Maybe you are looking for

  • How can I send XML to a servlet without a WebService?

    I have created some XML on my Flex app now I want to send it back to the Servlet, any suggestions on how to do this? I don't have a web service setup, so I just need to do this without a webservice. I appreciate an help!!!!

  • How To Uninstall Photoshop CC (2014) from Creative Cloud (not listed in Program and Features)

    My membership for Creative Cloud has expired and I want to uninstall Photoshop CC 2014 from my system. The ONLY Adobe application listed under 'Program and Features' (Windows 8.1) is the Adobe Creative Cloud, however when I uninstall that all the Ado

  • Event Viewer - Error/Warning

    Hi, I am seeing the following errors on the subcriber Event Viewer system log. Does anyone know what is causing this. Event Type: Error Event Source: BROWSER Event Category: None Event ID: 8032 Date: 4/28/2006 Time: 10:12:19 AM User: N/A Computer: CC

  • Can't read photos after reinstalling operating system to iOS8 on  iPhone4

    I upgraded my OS to iOS8 on my iPhone4 and since then cannot read new photos as I try to copy images to my PC. Prior to that each time I took a new photo set with my iPhone it would create a new folder in DCIM (or added to the latest), so it was pret

  • Saving as PDF, from Word documents - not good quality?

    Why is it that when i create letterheads, adn i save as pdf this word document, it comes out such poor quality? Is there a setting to save with high quality output from acrobat, word to pdf or also how about print pdf? Is anyone able to help us out?