Extjs- as communication  in Adobe AIR

I tried ExternalInterface to do a Extjs-as communication but could not do so .
If someone has already done some sort of Extjs-as communication , please let me know
Thanks

quote:
Originally posted by:
ab1301
Unfortunately, in this case I think no news is bad news. I
have seen people mentioning AIR's printing problems all over the
place, and I haven't seen word 1 from anyone at Adobe. On any other
issue, the "evangelists" always seem to be out in force. I think
that means no one is even working on this, and no one wants to talk
about a negative that doesn't have a fix around the corner or even
on the horizon. (If you don't have anything good to say, don't say
anything at all). Its really a shame, since printing is so vital to
the desktop and AIR is supposed to be the bridge between the
desktop and web.
There are a couple bug reports on this issue that you might
vote for if interested:
https://bugs.adobe.com/jira/browse/SDK-13895
https://bugs.adobe.com/jira/browse/ASC-3300
Of course the status of the bugs is "deferred" and the
priority is "none," which only reinforces my belief that Adobe
doesn't intend to address this any time soon.
If this is true, then its really bad
I already had selected AIR for my University Project, and If
adobe doesnt add printing support within 6 months, then im going to
have a hard time
Is there any article which talks about those semi printing
ways like Save to HTML or simialr?

Similar Messages

  • Extjs - php server communication in Adobe AIR

    I am trying to port a existing Extjs App with server communication via php to Adobe AIR. With the existing setup, I am not able to communicate . Can some one put some insight on Extjs communication via php in AIR ?
    Thanks in advance

    There is a google API SMTP Mailer for this purpose which can be used in AIR to send emails. You can refer to the http://code.google.com/p/smtpmailer/downloads/list
    and the implementation is in http://stackoverflow.com/questions/4104736/how-to-send-email-using-adobe-air
    Thanks

  • Adobe AIR - is what I need for communication between C++ and Flash?

    Hello,
    We currently have a C++ desktop application running on Windows and Mac. We want to support web-enabled (launching from the web browser) and moving UI into Flash. I am looking for a communication package that can use with VC++ 6.0 and CodeWarrior 8.0 (Xcode later). This communication package will handle messages between C/C++ app (process) and Flash. The communication need to execute fast (no delay).
    I searched online about this and came across LocalConnection class and Adobe AIR but not getting enough info to have an answer. I am hoping posting this message will get more information.
    Thanks,
    -Thanh

    Thanks Kalisto for a kind offer. We are using old compilers, CodeWarrior 8.0 compiler on the Mac and VC++ 6.0 in Windows. It is nice if I can find a package that will work with both compilers (platforms). Since we want to communicate in realtime, AIR is probably a best option to go for Windows. I am still looking for the answer on the Mac side of how to communicate from C++ to Flash. I'll ask for your help on AIR when time come.
    Again, thanks.
    -Thanh

  • What's adobe air and adobe community help?

    I loaded 5.5 tonight and got a popup asking me if I'd like to install the new version of Adobe Air.  I said no thanks.  Then I clicked on the Help in 5.5, and it suggested I'd like to install a new version of Adobe Community Help.  I said okay, and then I got the popup for Adobe Air again.  When I canceled it, the upgrade to Adobe Community Help didn't complete properly.
    What's Adobe Air and what's Adobe Community Help?  What's the relationship between them?

    AIR is a runtime environment for running certain applications. The Adobe Community Help Client is an AIR application; it's a viewer for the Help documents.
    I prefer to not use the Community Help Client application. Instead, I use the HTML version of Help in my browser or the PDF version when I'm not online.
    There are direct links to the PDF and online HTML versions of the Help documents here.

  • Communication problem between air application from swf at browser

    Hi,
    I am trying to communicate adobe air native application from brwser using swf, I check for native application installed or not. If installed then launch and if not then install and launch.
    I am facing problem when browser crashes and communication get lost with adobe air native application. And when user restart web browser and try to make local connection for communication with native application, some times it get failed. so, how to handle this state please help.
    Thanks
    Nitesh Kumar

    Hi sinious,
    How could I clean up connection when browser is aborted or lost?
    below you can find the code snippet to check for air application and connection
    airSWFLoader = new Loader();
                                  loaderContext = new LoaderContext();
                                  loaderContext.applicationDomain = ApplicationDomain.currentDomain;
                                  airSWFLoader.contentLoaderInfo.addEventListener(Event.INIT, onInit);
                                  airSWFLoader.load(new URLRequest("http://airdownload.adobe.com/air/browserapi/air.swf"),loaderContext);
    function onInit(e:Event):void 
                                  airSWF = e.target.content; 
                                  switch(airSWF.getStatus().toString())
                                            case "available" : AirLoaderStatus = 1;
                                            break;
                                            case "unavailable" : AirLoaderStatus = 2;
                                            break;
                                            case "installed" : AirLoaderStatus = 3;
                                            break;
    private function getAppStatus():void
                                  clearInterval(intervalIdentifier);
                                  if(AirLoaderStatus == 0){intervalIdentifier = setInterval(getAppStatus,1000);return;}
                                  m_launchInstallBtn.visible = true;
                                  var statusInfo:String = airSWF.getStatus();
                                  airSWF.getApplicationVersion(m_installerFileName, m_pubID, versionDetectCallback);
    function versionDetectCallback(version:String):void
                                  if (version == null)
                                            trace("Not Installed");
                                            // Take appropriate actions. For instance, present the user with
                                            // an option to install the application.
                                  else
                                            m_isPluginsInstalled = true;
                                            // Take appropriate actions. For instance, enable the
                                            // user interface to launch the application.
    private function onlickMouse(event:MouseEvent):void
                                  m_text.text += "\nm_isPluginsInstalled:"+m_isPluginsInstalled+":::AirLoaderStatus:"+AirLoaderStatus;
                                  trace("\nm_isPluginsInstalled:"+m_isPluginsInstalled+":::AirLoaderStatus:" +AirLoaderStatus);
                                  switch(event.currentTarget)
                                            case m_launchInstallBtn:
                                                         if(AirLoaderStatus == 1)
           installAirsetup();
                                                      else
                                                                if(!m_isPluginsInstalled)
                                                                          airSWF.installApplication(m_url, m_runtimeVersion, m_argsToPass);
                                                                          airSWF.launchApplication(m_installerFileName, m_pubID, m_argsToPass);
                                                                else
                                                                          airSWF.launchApplication(m_installerFileName, m_pubID, m_argsToPass);
                                            break;
    in the above code snippet I pass localConnection for send and recieve as an argument in m_argsToPass.
    the connection names strarts with "_".
    In the air application I I split the event arguments like given below
    argsArray = event.arguments.toString().split(",");
    and then try to establish connection.
    Please suggest, how could I clean the connection on lost/ abort of browser, since then swf object embeded in browser also get lost.

  • How to get the data from mysql database which is being accessed by a PHP application and process the data locally in adobe air application and finally commit the changes back in to mysql database through the PHP application.

    How to get the data from mysql database which is being accessed by a PHP application and process the data locally in adobe air application and finally commit the changes back in to mysql database through the PHP application.

    If the data is on a remote server (for example, PHP running on a web server, talking to a MySQL server) then you do this in an AIR application the same way you would do it with any Flex application (or ajax application, if you're building your AIR app in HTML/JS).
    That's a broad answer, but in fact there are lots of ways to communicate between Flex and PHP. The most common and best in most cases is to use AMFPHP (http://amfphp.org/) or the new ZEND AMF support in the Zend Framework.
    This page is a good starting point for learning about Flex and PHP communication:
    http://www.adobe.com/devnet/flex/flex_php.html
    Also, in Flash Builder 4 they've added a lot of remote-data-connection functionality, including a lot that's designed for PHP. Take a look at the Flash Builder 4 public beta for more on that: http://labs.adobe.com/technologies/flashbuilder4/

  • Unable to install Adobe Air on Samsung galaxy tab 3 10.1

    Hallo,please help me with installation adobe air app on my Samsung galaxy tab 3 10.1 android version 4.2.2

    Or ask directly in the Adobe AIR forum: http://forums.adobe.com/community/air/installation

  • Can't Install or Reinstall Adobe AIR. What next?

    I am trying to run Market Samurai on Windows XP with service pack 3.
    Adobe AIR has been a nightmare for as long as I have been using Market Samurai and on the last MS upgrade has stopped altogether. I have attempted uninstalling and reinstall and despite the fact I have removed it with the windows uninstaller, the AIR Zapper and every other way described on the forums I still have problems. Currently, despite it apparently being uninstalled I get an error message every 10 seconds whilst my computer is running:
    "This application requires a version of Adobe AIR which cannot be found.
    Please download the latest version of the runtime from
    http://www.adobe.com/go/getair,
    or contact the application author for an updated version."
    This message appears whether I have recently installed the app or whether it has been removed. I am still unable to download the latest version of Market Samurai as I always get the above message.
    How can I get it to work, or failing that how can I remove it altogether?
    I attach the AIR Zapper Log.
    Found Folder: C:\Program Files\Common Files\Adobe AIR
    Delete FAILED
    Found Reg Key: SOFTWARE\Classes\.air\
    Delete FAILED
    Found Reg Key: SOFTWARE\Classes\AIR.InstallerPackage\
    Delete FAILED
    Zapping GUID: {FDB3B167-F4FA-461D-976F-286304A57B2A}
    MsiZapInfo: Performing operations for user S-1-5-21-515967899-507921405-1801674531-1004
    Searching for the product {FDB3B167-F4FA-461D-976F-286304A57B2A} cached package. . .
    Searching for install property data for product {FDB3B167-F4FA-461D-976F-286304A57B2A}. . .
    Searching user's global config location for product {FDB3B167-F4FA-461D-976F-286304A57B2A} data. . .
      Searching for product 761B3BDFAF4FD16479F68236405AB7A2 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 761B3BDFAF4FD16479F68236405AB7A2 in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-507921405 -1801674531-1004\Products\761B3BDFAF4FD16479F68236405AB7A2\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Products\761B3BDFAF4FD16479F68236405AB7A2 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Features\761B3BDFAF4FD16479F68236405AB7A2 for product feature data. . .
    Searching per-machine global config location for product {FDB3B167-F4FA-461D-976F-286304A57B2A} data. . .
      Searching for product 761B3BDFAF4FD16479F68236405AB7A2 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 761B3BDFAF4FD16479F68236405AB7A2 in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\761B3BDFAF 4FD16479F68236405AB7A2\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\761B3 BDFAF4FD16479F68236405AB7A2 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Features\761B3 BDFAF4FD16479F68236405AB7A2 for product feature data. . .
    Searching old global config location for product {FDB3B167-F4FA-461D-976F-286304A57B2A} data. . .
      Searching for product 761B3BDFAF4FD16479F68236405AB7A2 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 761B3BDFAF4FD16479F68236405AB7A2 in Software\Microsoft\Windows\CurrentVersion\Installer\Products\761B3BDFAF4FD16479F68236405A B7A2\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Products\761B3BDFAF4FD16479F6823 6405AB7A2 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Features\761B3BDFAF4FD16479F6823 6405AB7A2 for product feature data. . .
    Searching per-machine location for product {FDB3B167-F4FA-461D-976F-286304A57B2A} data. . .
      Searching for product 761B3BDFAF4FD16479F68236405AB7A2 upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product 761B3BDFAF4FD16479F68236405AB7A2 in Software\Classes\Installer\Products\761B3BDFAF4FD16479F68236405AB7A2\Patches
      Searching HKLM\Software\Classes\Installer\Components for published component data for the product {FDB3B167-F4FA-461D-976F-286304A57B2A}. . .
      Searching HKLM\Software\Classes\Installer\Assemblies for .Net assembly data for the product {FDB3B167-F4FA-461D-976F-286304A57B2A}. . .
      Searching HKLM\Software\Classes\Installer\Win32Assemblies for Win32 assembly data for the product {FDB3B167-F4FA-461D-976F-286304A57B2A}. . .
      Searching HKLM\Software\Classes\Installer\Products\761B3BDFAF4FD16479F68236405AB7A2 for product data. . .
      Searching HKLM\Software\Classes\Installer\Features\761B3BDFAF4FD16479F68236405AB7A2 for product feature data. . .
    Searching old per-user location for product {FDB3B167-F4FA-461D-976F-286304A57B2A} data. . .
      Searching for product 761B3BDFAF4FD16479F68236405AB7A2 upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product 761B3BDFAF4FD16479F68236405AB7A2 in Software\Classes\Installer\Products\761B3BDFAF4FD16479F68236405AB7A2\Patches
      Searching HKCU\Software\Classes\Installer\Products\761B3BDFAF4FD16479F68236405AB7A2 for product data. . .
      Searching HKCU\Software\Classes\Installer\Features\761B3BDFAF4FD16479F68236405AB7A2 for product feature data. . .
    Searching per-user location for product {FDB3B167-F4FA-461D-976F-286304A57B2A} data. . .
      Searching for product 761B3BDFAF4FD16479F68236405AB7A2 upgrade codes in Software\Microsoft\Installer\UpgradeCodes...
      Searching for patches for product 761B3BDFAF4FD16479F68236405AB7A2 in Software\Microsoft\Installer\Products\761B3BDFAF4FD16479F68236405AB7A2\Patches
      Searching HKCU\Software\Microsoft\Installer\Assemblies for .Net assembly data for the product {FDB3B167-F4FA-461D-976F-286304A57B2A}. . .
      Searching HKCU\Software\Microsoft\Installer\Products\761B3BDFAF4FD16479F68236405AB7A2 for product data. . .
      Searching HKCU\Software\Microsoft\Installer\Features\761B3BDFAF4FD16479F68236405AB7A2 for product feature data. . .
    Searching for product {FDB3B167-F4FA-461D-976F-286304A57B2A} in per-user managed location. . .
      Searching for product 761B3BDFAF4FD16479F68236405AB7A2 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\UpgradeCodes...
      Searching for patches for product 761B3BDFAF4FD16479F68236405AB7A2 in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\Products\761B3BDFAF4FD16479F68236405AB7A2\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Products\761B3BDFAF4FD16479F68236405AB7A2 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Features\761B3BDFAF4FD16479F68236405AB7A2 for product feature data. . .
    Searching for shared DLL counts for components tied to the product 761B3BDFAF4FD16479F68236405AB7A2. . .
       HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Components key is not present.
    Searching for shared DLL counts for components tied to the product 761B3BDFAF4FD16479F68236405AB7A2. . .
      Searching for product 761B3BDFAF4FD16479F68236405AB7A2 client info data. . .
      Searching for product 761B3BDFAF4FD16479F68236405AB7A2 client info data. . .
    Searching for Installer files and folders associated with the product {FDB3B167-F4FA-461D-976F-286304A57B2A}. . .
      Searching for files and folders in the user's profile. . .
      Searching for files and folders in the %WINDIR%\Installer folder
    FAILED to clear all data.
    Zapping GUID: {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    MsiZapInfo: Performing operations for user S-1-5-21-515967899-507921405-1801674531-1004
    Searching for the product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} cached package. . .
    Searching for install property data for product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}. . .
    Searching user's global config location for product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} data. . .
      Searching for product 080E7FFA4791FB54390101EDA1F1E50D upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 080E7FFA4791FB54390101EDA1F1E50D in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-507921405 -1801674531-1004\Products\080E7FFA4791FB54390101EDA1F1E50D\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Products\080E7FFA4791FB54390101EDA1F1E50D for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Features\080E7FFA4791FB54390101EDA1F1E50D for product feature data. . .
    Searching per-machine global config location for product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} data. . .
      Searching for product 080E7FFA4791FB54390101EDA1F1E50D upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 080E7FFA4791FB54390101EDA1F1E50D in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\080E7FFA47 91FB54390101EDA1F1E50D\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\080E7 FFA4791FB54390101EDA1F1E50D for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Features\080E7 FFA4791FB54390101EDA1F1E50D for product feature data. . .
    Searching old global config location for product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} data. . .
      Searching for product 080E7FFA4791FB54390101EDA1F1E50D upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 080E7FFA4791FB54390101EDA1F1E50D in Software\Microsoft\Windows\CurrentVersion\Installer\Products\080E7FFA4791FB54390101EDA1F1 E50D\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Products\080E7FFA4791FB54390101E DA1F1E50D for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Features\080E7FFA4791FB54390101E DA1F1E50D for product feature data. . .
    Searching per-machine location for product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} data. . .
      Searching for product 080E7FFA4791FB54390101EDA1F1E50D upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product 080E7FFA4791FB54390101EDA1F1E50D in Software\Classes\Installer\Products\080E7FFA4791FB54390101EDA1F1E50D\Patches
      Searching HKLM\Software\Classes\Installer\Components for published component data for the product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}. . .
      Searching HKLM\Software\Classes\Installer\Assemblies for .Net assembly data for the product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}. . .
      Searching HKLM\Software\Classes\Installer\Win32Assemblies for Win32 assembly data for the product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}. . .
      Searching HKLM\Software\Classes\Installer\Products\080E7FFA4791FB54390101EDA1F1E50D for product data. . .
      Searching HKLM\Software\Classes\Installer\Features\080E7FFA4791FB54390101EDA1F1E50D for product feature data. . .
    Searching old per-user location for product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} data. . .
      Searching for product 080E7FFA4791FB54390101EDA1F1E50D upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product 080E7FFA4791FB54390101EDA1F1E50D in Software\Classes\Installer\Products\080E7FFA4791FB54390101EDA1F1E50D\Patches
      Searching HKCU\Software\Classes\Installer\Products\080E7FFA4791FB54390101EDA1F1E50D for product data. . .
      Searching HKCU\Software\Classes\Installer\Features\080E7FFA4791FB54390101EDA1F1E50D for product feature data. . .
    Searching per-user location for product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} data. . .
      Searching for product 080E7FFA4791FB54390101EDA1F1E50D upgrade codes in Software\Microsoft\Installer\UpgradeCodes...
      Searching for patches for product 080E7FFA4791FB54390101EDA1F1E50D in Software\Microsoft\Installer\Products\080E7FFA4791FB54390101EDA1F1E50D\Patches
      Searching HKCU\Software\Microsoft\Installer\Assemblies for .Net assembly data for the product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}. . .
      Searching HKCU\Software\Microsoft\Installer\Products\080E7FFA4791FB54390101EDA1F1E50D for product data. . .
      Searching HKCU\Software\Microsoft\Installer\Features\080E7FFA4791FB54390101EDA1F1E50D for product feature data. . .
    Searching for product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} in per-user managed location. . .
      Searching for product 080E7FFA4791FB54390101EDA1F1E50D upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\UpgradeCodes...
      Searching for patches for product 080E7FFA4791FB54390101EDA1F1E50D in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\Products\080E7FFA4791FB54390101EDA1F1E50D\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Products\080E7FFA4791FB54390101EDA1F1E50D for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Features\080E7FFA4791FB54390101EDA1F1E50D for product feature data. . .
    Searching for shared DLL counts for components tied to the product 080E7FFA4791FB54390101EDA1F1E50D. . .
       HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Components key is not present.
    Searching for shared DLL counts for components tied to the product 080E7FFA4791FB54390101EDA1F1E50D. . .
      Searching for product 080E7FFA4791FB54390101EDA1F1E50D client info data. . .
      Searching for product 080E7FFA4791FB54390101EDA1F1E50D client info data. . .
    Searching for Installer files and folders associated with the product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}. . .
      Searching for files and folders in the user's profile. . .
      Searching for files and folders in the %WINDIR%\Installer folder
    FAILED to clear all data.
    Zapping GUID: {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    MsiZapInfo: Performing operations for user S-1-5-21-515967899-507921405-1801674531-1004
    Searching for the product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB} cached package. . .
    Searching for install property data for product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}. . .
    Searching user's global config location for product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB} data. . .
      Searching for product FB540C64F3B24CB4E8C4000EFCB89DBD upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product FB540C64F3B24CB4E8C4000EFCB89DBD in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-507921405 -1801674531-1004\Products\FB540C64F3B24CB4E8C4000EFCB89DBD\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Products\FB540C64F3B24CB4E8C4000EFCB89DBD for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Features\FB540C64F3B24CB4E8C4000EFCB89DBD for product feature data. . .
    Searching per-machine global config location for product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB} data. . .
      Searching for product FB540C64F3B24CB4E8C4000EFCB89DBD upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product FB540C64F3B24CB4E8C4000EFCB89DBD in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\FB540C64F3 B24CB4E8C4000EFCB89DBD\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\FB540 C64F3B24CB4E8C4000EFCB89DBD for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Features\FB540 C64F3B24CB4E8C4000EFCB89DBD for product feature data. . .
    Searching old global config location for product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB} data. . .
      Searching for product FB540C64F3B24CB4E8C4000EFCB89DBD upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product FB540C64F3B24CB4E8C4000EFCB89DBD in Software\Microsoft\Windows\CurrentVersion\Installer\Products\FB540C64F3B24CB4E8C4000EFCB8 9DBD\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Products\FB540C64F3B24CB4E8C4000 EFCB89DBD for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Features\FB540C64F3B24CB4E8C4000 EFCB89DBD for product feature data. . .
    Searching per-machine location for product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB} data. . .
      Searching for product FB540C64F3B24CB4E8C4000EFCB89DBD upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product FB540C64F3B24CB4E8C4000EFCB89DBD in Software\Classes\Installer\Products\FB540C64F3B24CB4E8C4000EFCB89DBD\Patches
      Searching HKLM\Software\Classes\Installer\Components for published component data for the product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}. . .
      Searching HKLM\Software\Classes\Installer\Assemblies for .Net assembly data for the product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}. . .
      Searching HKLM\Software\Classes\Installer\Win32Assemblies for Win32 assembly data for the product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}. . .
      Searching HKLM\Software\Classes\Installer\Products\FB540C64F3B24CB4E8C4000EFCB89DBD for product data. . .
      Searching HKLM\Software\Classes\Installer\Features\FB540C64F3B24CB4E8C4000EFCB89DBD for product feature data. . .
    Searching old per-user location for product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB} data. . .
      Searching for product FB540C64F3B24CB4E8C4000EFCB89DBD upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product FB540C64F3B24CB4E8C4000EFCB89DBD in Software\Classes\Installer\Products\FB540C64F3B24CB4E8C4000EFCB89DBD\Patches
      Searching HKCU\Software\Classes\Installer\Products\FB540C64F3B24CB4E8C4000EFCB89DBD for product data. . .
      Searching HKCU\Software\Classes\Installer\Features\FB540C64F3B24CB4E8C4000EFCB89DBD for product feature data. . .
    Searching per-user location for product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB} data. . .
      Searching for product FB540C64F3B24CB4E8C4000EFCB89DBD upgrade codes in Software\Microsoft\Installer\UpgradeCodes...
      Searching for patches for product FB540C64F3B24CB4E8C4000EFCB89DBD in Software\Microsoft\Installer\Products\FB540C64F3B24CB4E8C4000EFCB89DBD\Patches
      Searching HKCU\Software\Microsoft\Installer\Assemblies for .Net assembly data for the product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}. . .
      Searching HKCU\Software\Microsoft\Installer\Products\FB540C64F3B24CB4E8C4000EFCB89DBD for product data. . .
      Searching HKCU\Software\Microsoft\Installer\Features\FB540C64F3B24CB4E8C4000EFCB89DBD for product feature data. . .
    Searching for product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB} in per-user managed location. . .
      Searching for product FB540C64F3B24CB4E8C4000EFCB89DBD upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\UpgradeCodes...
      Searching for patches for product FB540C64F3B24CB4E8C4000EFCB89DBD in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\Products\FB540C64F3B24CB4E8C4000EFCB89DBD\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Products\FB540C64F3B24CB4E8C4000EFCB89DBD for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Features\FB540C64F3B24CB4E8C4000EFCB89DBD for product feature data. . .
    Searching for shared DLL counts for components tied to the product FB540C64F3B24CB4E8C4000EFCB89DBD. . .
       HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Components key is not present.
    Searching for shared DLL counts for components tied to the product FB540C64F3B24CB4E8C4000EFCB89DBD. . .
      Searching for product FB540C64F3B24CB4E8C4000EFCB89DBD client info data. . .
      Searching for product FB540C64F3B24CB4E8C4000EFCB89DBD client info data. . .
    Searching for Installer files and folders associated with the product {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}. . .
      Searching for files and folders in the user's profile. . .
      Searching for files and folders in the %WINDIR%\Installer folder
    FAILED to clear all data.
    Zapping GUID: {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    MsiZapInfo: Performing operations for user S-1-5-21-515967899-507921405-1801674531-1004
    Searching for the product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} cached package. . .
    Searching for install property data for product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}. . .
    Searching user's global config location for product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} data. . .
      Searching for product D272491B29F1FD6499BED8C59EC14BCE upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product D272491B29F1FD6499BED8C59EC14BCE in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-507921405 -1801674531-1004\Products\D272491B29F1FD6499BED8C59EC14BCE\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Products\D272491B29F1FD6499BED8C59EC14BCE for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Features\D272491B29F1FD6499BED8C59EC14BCE for product feature data. . .
    Searching per-machine global config location for product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} data. . .
      Searching for product D272491B29F1FD6499BED8C59EC14BCE upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product D272491B29F1FD6499BED8C59EC14BCE in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\D272491B29 F1FD6499BED8C59EC14BCE\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\D2724 91B29F1FD6499BED8C59EC14BCE for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Features\D2724 91B29F1FD6499BED8C59EC14BCE for product feature data. . .
    Searching old global config location for product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} data. . .
      Searching for product D272491B29F1FD6499BED8C59EC14BCE upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product D272491B29F1FD6499BED8C59EC14BCE in Software\Microsoft\Windows\CurrentVersion\Installer\Products\D272491B29F1FD6499BED8C59EC1 4BCE\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Products\D272491B29F1FD6499BED8C 59EC14BCE for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Features\D272491B29F1FD6499BED8C 59EC14BCE for product feature data. . .
    Searching per-machine location for product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} data. . .
      Searching for product D272491B29F1FD6499BED8C59EC14BCE upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product D272491B29F1FD6499BED8C59EC14BCE in Software\Classes\Installer\Products\D272491B29F1FD6499BED8C59EC14BCE\Patches
      Searching HKLM\Software\Classes\Installer\Components for published component data for the product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}. . .
      Searching HKLM\Software\Classes\Installer\Assemblies for .Net assembly data for the product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}. . .
      Searching HKLM\Software\Classes\Installer\Win32Assemblies for Win32 assembly data for the product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}. . .
      Searching HKLM\Software\Classes\Installer\Products\D272491B29F1FD6499BED8C59EC14BCE for product data. . .
      Searching HKLM\Software\Classes\Installer\Features\D272491B29F1FD6499BED8C59EC14BCE for product feature data. . .
    Searching old per-user location for product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} data. . .
      Searching for product D272491B29F1FD6499BED8C59EC14BCE upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product D272491B29F1FD6499BED8C59EC14BCE in Software\Classes\Installer\Products\D272491B29F1FD6499BED8C59EC14BCE\Patches
      Searching HKCU\Software\Classes\Installer\Products\D272491B29F1FD6499BED8C59EC14BCE for product data. . .
      Searching HKCU\Software\Classes\Installer\Features\D272491B29F1FD6499BED8C59EC14BCE for product feature data. . .
    Searching per-user location for product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} data. . .
      Searching for product D272491B29F1FD6499BED8C59EC14BCE upgrade codes in Software\Microsoft\Installer\UpgradeCodes...
      Searching for patches for product D272491B29F1FD6499BED8C59EC14BCE in Software\Microsoft\Installer\Products\D272491B29F1FD6499BED8C59EC14BCE\Patches
      Searching HKCU\Software\Microsoft\Installer\Assemblies for .Net assembly data for the product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}. . .
      Searching HKCU\Software\Microsoft\Installer\Products\D272491B29F1FD6499BED8C59EC14BCE for product data. . .
      Searching HKCU\Software\Microsoft\Installer\Features\D272491B29F1FD6499BED8C59EC14BCE for product feature data. . .
    Searching for product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} in per-user managed location. . .
      Searching for product D272491B29F1FD6499BED8C59EC14BCE upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\UpgradeCodes...
      Searching for patches for product D272491B29F1FD6499BED8C59EC14BCE in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\Products\D272491B29F1FD6499BED8C59EC14BCE\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Products\D272491B29F1FD6499BED8C59EC14BCE for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Features\D272491B29F1FD6499BED8C59EC14BCE for product feature data. . .
    Searching for shared DLL counts for components tied to the product D272491B29F1FD6499BED8C59EC14BCE. . .
       HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Components key is not present.
    Searching for shared DLL counts for components tied to the product D272491B29F1FD6499BED8C59EC14BCE. . .
      Searching for product D272491B29F1FD6499BED8C59EC14BCE client info data. . .
      Searching for product D272491B29F1FD6499BED8C59EC14BCE client info data. . .
    Searching for Installer files and folders associated with the product {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}. . .
      Searching for files and folders in the user's profile. . .
      Searching for files and folders in the %WINDIR%\Installer folder
    FAILED to clear all data.
    Zapping GUID: {A2BCA9F1-566C-4805-97D1-7FDC93386723}
    MsiZapInfo: Performing operations for user S-1-5-21-515967899-507921405-1801674531-1004
    Searching for the product {A2BCA9F1-566C-4805-97D1-7FDC93386723} cached package. . .
    Searching for install property data for product {A2BCA9F1-566C-4805-97D1-7FDC93386723}. . .
    Searching user's global config location for product {A2BCA9F1-566C-4805-97D1-7FDC93386723} data. . .
      Searching for product 1F9ACB2AC6655084791DF7CD39837632 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 1F9ACB2AC6655084791DF7CD39837632 in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-507921405 -1801674531-1004\Products\1F9ACB2AC6655084791DF7CD39837632\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Products\1F9ACB2AC6655084791DF7CD39837632 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Features\1F9ACB2AC6655084791DF7CD39837632 for product feature data. . .
    Searching per-machine global config location for product {A2BCA9F1-566C-4805-97D1-7FDC93386723} data. . .
      Searching for product 1F9ACB2AC6655084791DF7CD39837632 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 1F9ACB2AC6655084791DF7CD39837632 in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\1F9ACB2AC6 655084791DF7CD39837632\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\1F9AC B2AC6655084791DF7CD39837632 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Features\1F9AC B2AC6655084791DF7CD39837632 for product feature data. . .
    Searching old global config location for product {A2BCA9F1-566C-4805-97D1-7FDC93386723} data. . .
      Searching for product 1F9ACB2AC6655084791DF7CD39837632 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 1F9ACB2AC6655084791DF7CD39837632 in Software\Microsoft\Windows\CurrentVersion\Installer\Products\1F9ACB2AC6655084791DF7CD3983 7632\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Products\1F9ACB2AC6655084791DF7C D39837632 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Features\1F9ACB2AC6655084791DF7C D39837632 for product feature data. . .
    Searching per-machine location for product {A2BCA9F1-566C-4805-97D1-7FDC93386723} data. . .
      Searching for product 1F9ACB2AC6655084791DF7CD39837632 upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product 1F9ACB2AC6655084791DF7CD39837632 in Software\Classes\Installer\Products\1F9ACB2AC6655084791DF7CD39837632\Patches
      Searching HKLM\Software\Classes\Installer\Components for published component data for the product {A2BCA9F1-566C-4805-97D1-7FDC93386723}. . .
      Searching HKLM\Software\Classes\Installer\Assemblies for .Net assembly data for the product {A2BCA9F1-566C-4805-97D1-7FDC93386723}. . .
      Searching HKLM\Software\Classes\Installer\Win32Assemblies for Win32 assembly data for the product {A2BCA9F1-566C-4805-97D1-7FDC93386723}. . .
      Searching HKLM\Software\Classes\Installer\Products\1F9ACB2AC6655084791DF7CD39837632 for product data. . .
      Searching HKLM\Software\Classes\Installer\Features\1F9ACB2AC6655084791DF7CD39837632 for product feature data. . .
    Searching old per-user location for product {A2BCA9F1-566C-4805-97D1-7FDC93386723} data. . .
      Searching for product 1F9ACB2AC6655084791DF7CD39837632 upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product 1F9ACB2AC6655084791DF7CD39837632 in Software\Classes\Installer\Products\1F9ACB2AC6655084791DF7CD39837632\Patches
      Searching HKCU\Software\Classes\Installer\Products\1F9ACB2AC6655084791DF7CD39837632 for product data. . .
      Searching HKCU\Software\Classes\Installer\Features\1F9ACB2AC6655084791DF7CD39837632 for product feature data. . .
    Searching per-user location for product {A2BCA9F1-566C-4805-97D1-7FDC93386723} data. . .
      Searching for product 1F9ACB2AC6655084791DF7CD39837632 upgrade codes in Software\Microsoft\Installer\UpgradeCodes...
      Searching for patches for product 1F9ACB2AC6655084791DF7CD39837632 in Software\Microsoft\Installer\Products\1F9ACB2AC6655084791DF7CD39837632\Patches
      Searching HKCU\Software\Microsoft\Installer\Assemblies for .Net assembly data for the product {A2BCA9F1-566C-4805-97D1-7FDC93386723}. . .
      Searching HKCU\Software\Microsoft\Installer\Products\1F9ACB2AC6655084791DF7CD39837632 for product data. . .
      Searching HKCU\Software\Microsoft\Installer\Features\1F9ACB2AC6655084791DF7CD39837632 for product feature data. . .
    Searching for product {A2BCA9F1-566C-4805-97D1-7FDC93386723} in per-user managed location. . .
      Searching for product 1F9ACB2AC6655084791DF7CD39837632 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\UpgradeCodes...
      Searching for patches for product 1F9ACB2AC6655084791DF7CD39837632 in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\Products\1F9ACB2AC6655084791DF7CD39837632\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Products\1F9ACB2AC6655084791DF7CD39837632 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Features\1F9ACB2AC6655084791DF7CD39837632 for product feature data. . .
    Searching for shared DLL counts for components tied to the product 1F9ACB2AC6655084791DF7CD39837632. . .
       HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Components key is not present.
    Searching for shared DLL counts for components tied to the product 1F9ACB2AC6655084791DF7CD39837632. . .
      Searching for product 1F9ACB2AC6655084791DF7CD39837632 client info data. . .
      Searching for product 1F9ACB2AC6655084791DF7CD39837632 client info data. . .
    Searching for Installer files and folders associated with the product {A2BCA9F1-566C-4805-97D1-7FDC93386723}. . .
      Searching for files and folders in the user's profile. . .
      Searching for files and folders in the %WINDIR%\Installer folder
    FAILED to clear all data.
    Zapping GUID: {197A3012-8C85-4FD3-AB66-9EC7E13DB92E}
    MsiZapInfo: Performing operations for user S-1-5-21-515967899-507921405-1801674531-1004
    Searching for the product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E} cached package. . .
    Searching for install property data for product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E}. . .
    Searching user's global config location for product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E} data. . .
      Searching for product 2103A79158C83DF4BA66E97C1ED39BE2 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 2103A79158C83DF4BA66E97C1ED39BE2 in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-507921405 -1801674531-1004\Products\2103A79158C83DF4BA66E97C1ED39BE2\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Products\2103A79158C83DF4BA66E97C1ED39BE2 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Features\2103A79158C83DF4BA66E97C1ED39BE2 for product feature data. . .
    Searching per-machine global config location for product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E} data. . .
      Searching for product 2103A79158C83DF4BA66E97C1ED39BE2 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 2103A79158C83DF4BA66E97C1ED39BE2 in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\2103A79158 C83DF4BA66E97C1ED39BE2\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\2103A 79158C83DF4BA66E97C1ED39BE2 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Features\2103A 79158C83DF4BA66E97C1ED39BE2 for product feature data. . .
    Searching old global config location for product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E} data. . .
      Searching for product 2103A79158C83DF4BA66E97C1ED39BE2 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 2103A79158C83DF4BA66E97C1ED39BE2 in Software\Microsoft\Windows\CurrentVersion\Installer\Products\2103A79158C83DF4BA66E97C1ED3 9BE2\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Products\2103A79158C83DF4BA66E97 C1ED39BE2 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Features\2103A79158C83DF4BA66E97 C1ED39BE2 for product feature data. . .
    Searching per-machine location for product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E} data. . .
      Searching for product 2103A79158C83DF4BA66E97C1ED39BE2 upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product 2103A79158C83DF4BA66E97C1ED39BE2 in Software\Classes\Installer\Products\2103A79158C83DF4BA66E97C1ED39BE2\Patches
      Searching HKLM\Software\Classes\Installer\Components for published component data for the product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E}. . .
      Searching HKLM\Software\Classes\Installer\Assemblies for .Net assembly data for the product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E}. . .
      Searching HKLM\Software\Classes\Installer\Win32Assemblies for Win32 assembly data for the product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E}. . .
      Searching HKLM\Software\Classes\Installer\Products\2103A79158C83DF4BA66E97C1ED39BE2 for product data. . .
      Searching HKLM\Software\Classes\Installer\Features\2103A79158C83DF4BA66E97C1ED39BE2 for product feature data. . .
    Searching old per-user location for product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E} data. . .
      Searching for product 2103A79158C83DF4BA66E97C1ED39BE2 upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product 2103A79158C83DF4BA66E97C1ED39BE2 in Software\Classes\Installer\Products\2103A79158C83DF4BA66E97C1ED39BE2\Patches
      Searching HKCU\Software\Classes\Installer\Products\2103A79158C83DF4BA66E97C1ED39BE2 for product data. . .
      Searching HKCU\Software\Classes\Installer\Features\2103A79158C83DF4BA66E97C1ED39BE2 for product feature data. . .
    Searching per-user location for product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E} data. . .
      Searching for product 2103A79158C83DF4BA66E97C1ED39BE2 upgrade codes in Software\Microsoft\Installer\UpgradeCodes...
      Searching for patches for product 2103A79158C83DF4BA66E97C1ED39BE2 in Software\Microsoft\Installer\Products\2103A79158C83DF4BA66E97C1ED39BE2\Patches
      Searching HKCU\Software\Microsoft\Installer\Assemblies for .Net assembly data for the product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E}. . .
      Searching HKCU\Software\Microsoft\Installer\Products\2103A79158C83DF4BA66E97C1ED39BE2 for product data. . .
      Searching HKCU\Software\Microsoft\Installer\Features\2103A79158C83DF4BA66E97C1ED39BE2 for product feature data. . .
    Searching for product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E} in per-user managed location. . .
      Searching for product 2103A79158C83DF4BA66E97C1ED39BE2 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\UpgradeCodes...
      Searching for patches for product 2103A79158C83DF4BA66E97C1ED39BE2 in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\Products\2103A79158C83DF4BA66E97C1ED39BE2\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Products\2103A79158C83DF4BA66E97C1ED39BE2 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Features\2103A79158C83DF4BA66E97C1ED39BE2 for product feature data. . .
    Searching for shared DLL counts for components tied to the product 2103A79158C83DF4BA66E97C1ED39BE2. . .
       HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Components key is not present.
    Searching for shared DLL counts for components tied to the product 2103A79158C83DF4BA66E97C1ED39BE2. . .
      Searching for product 2103A79158C83DF4BA66E97C1ED39BE2 client info data. . .
      Searching for product 2103A79158C83DF4BA66E97C1ED39BE2 client info data. . .
    Searching for Installer files and folders associated with the product {197A3012-8C85-4FD3-AB66-9EC7E13DB92E}. . .
      Searching for files and folders in the user's profile. . .
      Searching for files and folders in the %WINDIR%\Installer folder
    FAILED to clear all data.
    Zapping GUID: {00203668-8170-44A0-BE44-B632FA4D780F}
    MsiZapInfo: Performing operations for user S-1-5-21-515967899-507921405-1801674531-1004
    Searching for the product {00203668-8170-44A0-BE44-B632FA4D780F} cached package. . .
    Searching for install property data for product {00203668-8170-44A0-BE44-B632FA4D780F}. . .
    Searching user's global config location for product {00203668-8170-44A0-BE44-B632FA4D780F} data. . .
      Searching for product 8663020007180A44EB446B23AFD487F0 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 8663020007180A44EB446B23AFD487F0 in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-507921405 -1801674531-1004\Products\8663020007180A44EB446B23AFD487F0\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Products\8663020007180A44EB446B23AFD487F0 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Features\8663020007180A44EB446B23AFD487F0 for product feature data. . .
    Searching per-machine global config location for product {00203668-8170-44A0-BE44-B632FA4D780F} data. . .
      Searching for product 8663020007180A44EB446B23AFD487F0 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 8663020007180A44EB446B23AFD487F0 in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\8663020007 180A44EB446B23AFD487F0\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\86630 20007180A44EB446B23AFD487F0 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Features\86630 20007180A44EB446B23AFD487F0 for product feature data. . .
    Searching old global config location for product {00203668-8170-44A0-BE44-B632FA4D780F} data. . .
      Searching for product 8663020007180A44EB446B23AFD487F0 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 8663020007180A44EB446B23AFD487F0 in Software\Microsoft\Windows\CurrentVersion\Installer\Products\8663020007180A44EB446B23AFD4 87F0\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Products\8663020007180A44EB446B2 3AFD487F0 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Features\8663020007180A44EB446B2 3AFD487F0 for product feature data. . .
    Searching per-machine location for product {00203668-8170-44A0-BE44-B632FA4D780F} data. . .
      Searching for product 8663020007180A44EB446B23AFD487F0 upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product 8663020007180A44EB446B23AFD487F0 in Software\Classes\Installer\Products\8663020007180A44EB446B23AFD487F0\Patches
      Searching HKLM\Software\Classes\Installer\Components for published component data for the product {00203668-8170-44A0-BE44-B632FA4D780F}. . .
      Searching HKLM\Software\Classes\Installer\Assemblies for .Net assembly data for the product {00203668-8170-44A0-BE44-B632FA4D780F}. . .
      Searching HKLM\Software\Classes\Installer\Win32Assemblies for Win32 assembly data for the product {00203668-8170-44A0-BE44-B632FA4D780F}. . .
      Searching HKLM\Software\Classes\Installer\Products\8663020007180A44EB446B23AFD487F0 for product data. . .
      Searching HKLM\Software\Classes\Installer\Features\8663020007180A44EB446B23AFD487F0 for product feature data. . .
    Searching old per-user location for product {00203668-8170-44A0-BE44-B632FA4D780F} data. . .
      Searching for product 8663020007180A44EB446B23AFD487F0 upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product 8663020007180A44EB446B23AFD487F0 in Software\Classes\Installer\Products\8663020007180A44EB446B23AFD487F0\Patches
      Searching HKCU\Software\Classes\Installer\Products\8663020007180A44EB446B23AFD487F0 for product data. . .
      Searching HKCU\Software\Classes\Installer\Features\8663020007180A44EB446B23AFD487F0 for product feature data. . .
    Searching per-user location for product {00203668-8170-44A0-BE44-B632FA4D780F} data. . .
      Searching for product 8663020007180A44EB446B23AFD487F0 upgrade codes in Software\Microsoft\Installer\UpgradeCodes...
      Searching for patches for product 8663020007180A44EB446B23AFD487F0 in Software\Microsoft\Installer\Products\8663020007180A44EB446B23AFD487F0\Patches
      Searching HKCU\Software\Microsoft\Installer\Assemblies for .Net assembly data for the product {00203668-8170-44A0-BE44-B632FA4D780F}. . .
      Searching HKCU\Software\Microsoft\Installer\Products\8663020007180A44EB446B23AFD487F0 for product data. . .
      Searching HKCU\Software\Microsoft\Installer\Features\8663020007180A44EB446B23AFD487F0 for product feature data. . .
    Searching for product {00203668-8170-44A0-BE44-B632FA4D780F} in per-user managed location. . .
      Searching for product 8663020007180A44EB446B23AFD487F0 upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\UpgradeCodes...
      Searching for patches for product 8663020007180A44EB446B23AFD487F0 in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\Products\8663020007180A44EB446B23AFD487F0\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Products\8663020007180A44EB446B23AFD487F0 for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Features\8663020007180A44EB446B23AFD487F0 for product feature data. . .
    Searching for shared DLL counts for components tied to the product 8663020007180A44EB446B23AFD487F0. . .
       HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Components key is not present.
    Searching for shared DLL counts for components tied to the product 8663020007180A44EB446B23AFD487F0. . .
      Searching for product 8663020007180A44EB446B23AFD487F0 client info data. . .
      Searching for product 8663020007180A44EB446B23AFD487F0 client info data. . .
    Searching for Installer files and folders associated with the product {00203668-8170-44A0-BE44-B632FA4D780F}. . .
      Searching for files and folders in the user's profile. . .
      Searching for files and folders in the %WINDIR%\Installer folder
    FAILED to clear all data.
    Zapping GUID: {E6672E63-6C06-4303-8F37-D8CEE82005B0}
    MsiZapInfo: Performing operations for user S-1-5-21-515967899-507921405-1801674531-1004
    Searching for the product {E6672E63-6C06-4303-8F37-D8CEE82005B0} cached package. . .
    Searching for install property data for product {E6672E63-6C06-4303-8F37-D8CEE82005B0}. . .
    Searching user's global config location for product {E6672E63-6C06-4303-8F37-D8CEE82005B0} data. . .
      Searching for product 36E2766E60C63034F8738DEC8E02500B upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 36E2766E60C63034F8738DEC8E02500B in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-507921405 -1801674531-1004\Products\36E2766E60C63034F8738DEC8E02500B\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Products\36E2766E60C63034F8738DEC8E02500B for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Features\36E2766E60C63034F8738DEC8E02500B for product feature data. . .
    Searching per-machine global config location for product {E6672E63-6C06-4303-8F37-D8CEE82005B0} data. . .
      Searching for product 36E2766E60C63034F8738DEC8E02500B upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 36E2766E60C63034F8738DEC8E02500B in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\36E2766E60 C63034F8738DEC8E02500B\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\36E27 66E60C63034F8738DEC8E02500B for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Features\36E27 66E60C63034F8738DEC8E02500B for product feature data. . .
    Searching old global config location for product {E6672E63-6C06-4303-8F37-D8CEE82005B0} data. . .
      Searching for product 36E2766E60C63034F8738DEC8E02500B upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product 36E2766E60C63034F8738DEC8E02500B in Software\Microsoft\Windows\CurrentVersion\Installer\Products\36E2766E60C63034F8738DEC8E02 500B\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Products\36E2766E60C63034F8738DE C8E02500B for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Features\36E2766E60C63034F8738DE C8E02500B for product feature data. . .
    Searching per-machine location for product {E6672E63-6C06-4303-8F37-D8CEE82005B0} data. . .
      Searching for product 36E2766E60C63034F8738DEC8E02500B upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product 36E2766E60C63034F8738DEC8E02500B in Software\Classes\Installer\Products\36E2766E60C63034F8738DEC8E02500B\Patches
      Searching HKLM\Software\Classes\Installer\Components for published component data for the product {E6672E63-6C06-4303-8F37-D8CEE82005B0}. . .
      Searching HKLM\Software\Classes\Installer\Assemblies for .Net assembly data for the product {E6672E63-6C06-4303-8F37-D8CEE82005B0}. . .
      Searching HKLM\Software\Classes\Installer\Win32Assemblies for Win32 assembly data for the product {E6672E63-6C06-4303-8F37-D8CEE82005B0}. . .
      Searching HKLM\Software\Classes\Installer\Products\36E2766E60C63034F8738DEC8E02500B for product data. . .
      Searching HKLM\Software\Classes\Installer\Features\36E2766E60C63034F8738DEC8E02500B for product feature data. . .
    Searching old per-user location for product {E6672E63-6C06-4303-8F37-D8CEE82005B0} data. . .
      Searching for product 36E2766E60C63034F8738DEC8E02500B upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product 36E2766E60C63034F8738DEC8E02500B in Software\Classes\Installer\Products\36E2766E60C63034F8738DEC8E02500B\Patches
      Searching HKCU\Software\Classes\Installer\Products\36E2766E60C63034F8738DEC8E02500B for product data. . .
      Searching HKCU\Software\Classes\Installer\Features\36E2766E60C63034F8738DEC8E02500B for product feature data. . .
    Searching per-user location for product {E6672E63-6C06-4303-8F37-D8CEE82005B0} data. . .
      Searching for product 36E2766E60C63034F8738DEC8E02500B upgrade codes in Software\Microsoft\Installer\UpgradeCodes...
      Searching for patches for product 36E2766E60C63034F8738DEC8E02500B in Software\Microsoft\Installer\Products\36E2766E60C63034F8738DEC8E02500B\Patches
      Searching HKCU\Software\Microsoft\Installer\Assemblies for .Net assembly data for the product {E6672E63-6C06-4303-8F37-D8CEE82005B0}. . .
      Searching HKCU\Software\Microsoft\Installer\Products\36E2766E60C63034F8738DEC8E02500B for product data. . .
      Searching HKCU\Software\Microsoft\Installer\Features\36E2766E60C63034F8738DEC8E02500B for product feature data. . .
    Searching for product {E6672E63-6C06-4303-8F37-D8CEE82005B0} in per-user managed location. . .
      Searching for product 36E2766E60C63034F8738DEC8E02500B upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\UpgradeCodes...
      Searching for patches for product 36E2766E60C63034F8738DEC8E02500B in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\Products\36E2766E60C63034F8738DEC8E02500B\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Products\36E2766E60C63034F8738DEC8E02500B for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-50792 1405-1801674531-1004\Installer\Features\36E2766E60C63034F8738DEC8E02500B for product feature data. . .
    Searching for shared DLL counts for components tied to the product 36E2766E60C63034F8738DEC8E02500B. . .
       HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Components key is not present.
    Searching for shared DLL counts for components tied to the product 36E2766E60C63034F8738DEC8E02500B. . .
      Searching for product 36E2766E60C63034F8738DEC8E02500B client info data. . .
      Searching for product 36E2766E60C63034F8738DEC8E02500B client info data. . .
    Searching for Installer files and folders associated with the product {E6672E63-6C06-4303-8F37-D8CEE82005B0}. . .
      Searching for files and folders in the user's profile. . .
      Searching for files and folders in the %WINDIR%\Installer folder
    FAILED to clear all data.
    Zapping GUID: {199FC15D-2E06-47BE-B3EA-CA086FCB94CF}
    MsiZapInfo: Performing operations for user S-1-5-21-515967899-507921405-1801674531-1004
    Searching for the product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF} cached package. . .
    Searching for install property data for product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF}. . .
    Searching user's global config location for product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF} data. . .
      Searching for product D51CF99160E2EB743BAEAC80F6BC49FC upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product D51CF99160E2EB743BAEAC80F6BC49FC in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-507921405 -1801674531-1004\Products\D51CF99160E2EB743BAEAC80F6BC49FC\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Products\D51CF99160E2EB743BAEAC80F6BC49FC for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-21-515967899-5079 21405-1801674531-1004\Features\D51CF99160E2EB743BAEAC80F6BC49FC for product feature data. . .
    Searching per-machine global config location for product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF} data. . .
      Searching for product D51CF99160E2EB743BAEAC80F6BC49FC upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product D51CF99160E2EB743BAEAC80F6BC49FC in Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\D51CF99160 E2EB743BAEAC80F6BC49FC\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\D51CF 99160E2EB743BAEAC80F6BC49FC for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Features\D51CF 99160E2EB743BAEAC80F6BC49FC for product feature data. . .
    Searching old global config location for product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF} data. . .
      Searching for product D51CF99160E2EB743BAEAC80F6BC49FC upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes...
      Searching for patches for product D51CF99160E2EB743BAEAC80F6BC49FC in Software\Microsoft\Windows\CurrentVersion\Installer\Products\D51CF99160E2EB743BAEAC80F6BC 49FC\Patches
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Products\D51CF99160E2EB743BAEAC8 0F6BC49FC for product data. . .
      Searching HKLM\Software\Microsoft\Windows\CurrentVersion\Installer\Features\D51CF99160E2EB743BAEAC8 0F6BC49FC for product feature data. . .
    Searching per-machine location for product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF} data. . .
      Searching for product D51CF99160E2EB743BAEAC80F6BC49FC upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product D51CF99160E2EB743BAEAC80F6BC49FC in Software\Classes\Installer\Products\D51CF99160E2EB743BAEAC80F6BC49FC\Patches
      Searching HKLM\Software\Classes\Installer\Components for published component data for the product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF}. . .
      Searching HKLM\Software\Classes\Installer\Assemblies for .Net assembly data for the product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF}. . .
      Searching HKLM\Software\Classes\Installer\Win32Assemblies for Win32 assembly data for the product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF}. . .
      Searching HKLM\Software\Classes\Installer\Products\D51CF99160E2EB743BAEAC80F6BC49FC for product data. . .
      Searching HKLM\Software\Classes\Installer\Features\D51CF99160E2EB743BAEAC80F6BC49FC for product feature data. . .
    Searching old per-user location for product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF} data. . .
      Searching for product D51CF99160E2EB743BAEAC80F6BC49FC upgrade codes in Software\Classes\Installer\UpgradeCodes...
      Searching for patches for product D51CF99160E2EB743BAEAC80F6BC49FC in Software\Classes\Installer\Products\D51CF99160E2EB743BAEAC80F6BC49FC\Patches
      Searching HKCU\Software\Classes\Installer\Products\D51CF99160E2EB743BAEAC80F6BC49FC for product data. . .
      Searching HKCU\Software\Classes\Installer\Features\D51CF99160E2EB743BAEAC80F6BC49FC for product feature data. . .
    Searching per-user location for product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF} data. . .
      Searching for product D51CF99160E2EB743BAEAC80F6BC49FC upgrade codes in Software\Microsoft\Installer\UpgradeCodes...
      Searching for patches for product D51CF99160E2EB743BAEAC80F6BC49FC in Software\Microsoft\Installer\Products\D51CF99160E2EB743BAEAC80F6BC49FC\Patches
      Searching HKCU\Software\Microsoft\Installer\Assemblies for .Net assembly data for the product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF}. . .
      Searching HKCU\Software\Microsoft\Installer\Products\D51CF99160E2EB743BAEAC80F6BC49FC for product data. . .
      Searching HKCU\Software\Microsoft\Installer\Features\D51CF99160E2EB743BAEAC80F6BC49FC for product feature data. . .
    Searching for product {199FC15D-2E06-47BE-B3EA-CA086FCB94CF} in per-user managed location. . .
      Searching for product D51CF99160E2EB743BAEAC80F6BC49FC upgrade codes in Software\Microsoft\Windows\CurrentVersion\Installer\Managed\S-1-5-21-515967899-507921405- 1801674531-1004\Installer\Upgra

    Welcome to our community
    Please click the link below and pay close attention to the text in red letters. The page has a link on it you need to follow.
    Click here to view
    Cheers... Rick

  • Adobe AIR 3.1 won't install on Win 7 x64

    Hello Community,
    after spending hours of trying to install Adobe AIR I am giving up and asking the community for help. I tried all hints here in the forum but no succes. The installation fails in the msi part. Therefore i attached the AirInstall.log and msi.log files for debugging. I need Adobe AIR for the installation of Photoshop Elements.
    Installing as user Andi with adminitration rights. (Same problem with other users)
    System: Windows 7 pro X64
    Best regards,
        Andi
    AIR Install LOG:
    [2012-01-06:17:29:19] Bootstrapper begin with version 2.5.0.16600 on Win x86
    [2012-01-06:17:29:19] No installed runtime detected
    [2012-01-06:17:29:19] Begin runtime download from http://airdownload.adobe.com/air/3/nai/windows6.1/x86/installer
    [2012-01-06:17:29:32] Download success
    [2012-01-06:17:29:32] Begin signature download from http://airdownload.adobe.com/air/3/nai/windows6.1/x86/installer.p7
    [2012-01-06:17:29:32] Download success
    [2012-01-06:17:29:32] Detached signature verified
    [2012-01-06:17:29:32] Begin cert chain validation
    [2012-01-06:17:29:32] Begin crl download from http://crl.adobe.com/prodSvce.crl
    [2012-01-06:17:29:32] Download success
    [2012-01-06:17:29:32] Begin crl download from http://crl.adobe.com/cds.crl
    [2012-01-06:17:29:32] Download success
    [2012-01-06:17:29:32] Begin crl download from ldap:///CN=CRL1, CN=Adobe Root CA, OU=Adobe Trust Services, O=Adobe Systems Incorporated, C=US?certificateRevocationList;binary,authorityRevocationList;binary,deltaRevocationList; binary
    [2012-01-06:17:29:37] Download failure: could not retrieve crl crypt object
    [2012-01-06:17:29:37] Cert chain validation succeeded
    [2012-01-06:17:29:37] Launching subprocess with commandline "C:\Users\Andi\AppData\Local\Temp\AIRRuntimeInstaller.exe" -x1 "C:\Users\Andi\AppData\Local\Temp\AIR677E.tmp\Adobe Download Assistant"
    [2012-01-06:17:29:45] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-01-06:17:29:45] Commandline is: -x1 "C:\Users\Andi\AppData\Local\Temp\AIR677E.tmp\Adobe Download Assistant"
    [2012-01-06:17:29:45] No installed runtime detected
    [2012-01-06:17:29:45] Invoking Application Installer for combined install
    [2012-01-06:17:29:45] Launching subprocess with commandline C:\Users\Andi\AppData\Local\Temp\AIRB2B0.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Andi\AppData\Local\Temp\AIRB2B0.tmp -withRuntime -url "C:\Users\Andi\AppData\Local\Temp\AIR677E.tmp\Adobe Download Assistant"
    [2012-01-06:17:29:50] Application Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-01-06:17:29:50] Commandline is: -runtime C:\Users\Andi\AppData\Local\Temp\AIRB2B0.tmp -withRuntime -url "C:\Users\Andi\AppData\Local\Temp\AIR677E.tmp\Adobe Download Assistant"
    [2012-01-06:17:29:50] No installed runtime detected
    [2012-01-06:17:29:50] Validating app in folder C:\Users\Andi\AppData\Local\Temp\AIR677E.tmp\Adobe Download Assistant
    [2012-01-06:17:29:53] Application signature verified
    [2012-01-06:17:29:53] Unpackaging/validation complete
    [2012-01-06:17:30:06] Cancel request received
    [2012-01-06:17:30:06] Application Installer end with exit code 6
    [2012-01-06:17:30:06] Subprocess app installer failed (6)
    [2012-01-06:17:30:06] Cancel request received
    [2012-01-06:17:30:06] Runtime Installer end with exit code 6
    [2012-01-06:17:30:07] Subprocess Runtime Installer failed (6)
    [2012-01-06:17:30:07] Bootstrapper end with exit code 6
    [2012-01-06:17:30:28] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-01-06:17:30:28] Commandline is:
    [2012-01-06:17:30:28] No installed runtime detected
    [2012-01-06:17:30:34] Relaunching with elevation
    [2012-01-06:17:30:34] Launching subprocess with commandline c:\users\andi\appdata\local\temp\air4c60.tmp\adobe air installer.exe -ei
    [2012-01-06:17:30:42] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-01-06:17:30:42] Commandline is: -stdio \\.\pipe\AIR_1464_0 -ei
    [2012-01-06:17:30:42] No installed runtime detected
    [2012-01-06:17:30:42] Starting silent runtime install. Installing runtime version 3.1.0.4880
    [2012-01-06:17:30:42] Installing msi at c:\users\andi\appdata\local\temp\air4c60.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2012-01-06:17:30:43] Could not copy the file at C:\Users\Andi\appdata\local\temp\air4c60.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Users\Default\AppData\Roaming\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2012-01-06:17:30:43] Error occurred during copy operation; beginning rollback: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2038" errorID=2038]
    [2012-01-06:17:30:43] Rolling back install of c:\users\andi\appdata\local\temp\air4c60.tmp\setup.msi
    [2012-01-06:17:30:44] Rollback complete
    [2012-01-06:17:30:44] Exiting due to error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2038" errorID=2038]
    [2012-01-06:17:30:44] Runtime Installer end with exit code 7
    [2012-01-06:17:30:48] Runtime Installer end with exit code 7
    MSI-LOG:
    === Verbose logging started: 06.01.2012  17:30:42  Build type: SHIP UNICODE 5.00.7601.00  Calling process: C:\Users\Andi\appdata\local\temp\air4c60.tmp\adobe air installer.exe ===
    MSI (c) (74:B8) [17:30:42:666]: Resetting cached policy values
    MSI (c) (74:B8) [17:30:42:666]: Machine policy value 'Debug' is 0
    MSI (c) (74:B8) [17:30:42:666]: ******* RunEngine:
               ******* Product: c:\users\andi\appdata\local\temp\air4c60.tmp\setup.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (c) (74:B8) [17:30:42:666]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (74:B8) [17:30:42:667]: Grabbed execution mutex.
    MSI (c) (74:B8) [17:30:42:676]: Cloaking enabled.
    MSI (c) (74:B8) [17:30:42:676]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (74:B8) [17:30:42:680]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (AC:34) [17:30:42:686]: Running installation inside multi-package transaction c:\users\andi\appdata\local\temp\air4c60.tmp\setup.msi
    MSI (s) (AC:34) [17:30:42:686]: Grabbed execution mutex.
    MSI (s) (AC:98) [17:30:42:688]: Resetting cached policy values
    MSI (s) (AC:98) [17:30:42:688]: Machine policy value 'Debug' is 0
    MSI (s) (AC:98) [17:30:42:688]: ******* RunEngine:
               ******* Product: c:\users\andi\appdata\local\temp\air4c60.tmp\setup.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (s) (AC:98) [17:30:42:688]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (AC:98) [17:30:42:689]: Setting cached product context: machine assigned for product: 000041091A0070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:689]: Using cached product context: machine assigned for product: 000041091A0070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:689]: Setting cached product context: machine assigned for product: 00004109610070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:689]: Using cached product context: machine assigned for product: 00004109610070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:689]: Setting cached product context: machine assigned for product: 00004109810070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:689]: Using cached product context: machine assigned for product: 00004109810070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:689]: Setting cached product context: machine assigned for product: 00004109910070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:689]: Using cached product context: machine assigned for product: 00004109910070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:689]: Setting cached product context: machine assigned for product: 00004109A10070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:689]: Using cached product context: machine assigned for product: 00004109A10070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:689]: Setting cached product context: machine assigned for product: 00004109A20000000100000000F01FEC
    MSI (s) (AC:98) [17:30:42:689]: Using cached product context: machine assigned for product: 00004109A20000000100000000F01FEC
    MSI (s) (AC:98) [17:30:42:690]: Setting cached product context: machine assigned for product: 00004109A20070400100000000F01FEC
    MSI (s) (AC:98) [17:30:42:690]: Using cached product context: machine assigned for product: 00004109A20070400100000000F01FEC
    MSI (s) (AC:98) [17:30:42:690]: Setting cached product context: machine assigned for product: 00004109B10070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:690]: Using cached product context: machine assigned for product: 00004109B10070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:690]: Setting cached product context: machine assigned for product: 00004109C20070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:690]: Using cached product context: machine assigned for product: 00004109C20070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:690]: Setting cached product context: machine assigned for product: 00004109E60070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:690]: Using cached product context: machine assigned for product: 00004109E60070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:691]: Setting cached product context: machine assigned for product: 00004109F10001400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:691]: Using cached product context: machine assigned for product: 00004109F10001400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:691]: Setting cached product context: machine assigned for product: 00004109F10070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:691]: Using cached product context: machine assigned for product: 00004109F10070400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:691]: Setting cached product context: machine assigned for product: 00004109F10090400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:691]: Using cached product context: machine assigned for product: 00004109F10090400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:691]: Setting cached product context: machine assigned for product: 00004109F100C0400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:691]: Using cached product context: machine assigned for product: 00004109F100C0400000000000F01FEC
    MSI (s) (AC:98) [17:30:42:691]: Setting cached product context: machine assigned for product: 00004119210000000000000000F01FEC
    MSI (s) (AC:98) [17:30:42:691]: Using cached product context: machine assigned for product: 00004119210000000000000000F01FEC
    MSI (s) (AC:98) [17:30:42:692]: Setting cached product context: machine assigned for product: 0E4464C795773274A823124BB5187D58
    MSI (s) (AC:98) [17:30:42:692]: Using cached product context: machine assigned for product: 0E4464C795773274A823124BB5187D58
    MSI (s) (AC:98) [17:30:42:692]: Setting cached product context: machine assigned for product: 121E2D80A6F7BE3479DF26B944094330
    MSI (s) (AC:98) [17:30:42:692]: Using cached product context: machine assigned for product: 121E2D80A6F7BE3479DF26B944094330
    MSI (s) (AC:98) [17:30:42:692]: Setting cached product context: machine assigned for product: 19DA96544F74E9D4F89C17E73CD2A71E
    MSI (s) (AC:98) [17:30:42:692]: Using cached product context: machine assigned for product: 19DA96544F74E9D4F89C17E73CD2A71E
    MSI (s) (AC:98) [17:30:42:692]: Setting cached product context: machine assigned for product: 1E4ACFA687B90463F8277AFB33442800
    MSI (s) (AC:98) [17:30:42:692]: Using cached product context: machine assigned for product: 1E4ACFA687B90463F8277AFB33442800
    MSI (s) (AC:98) [17:30:42:692]: Setting cached product context: machine assigned for product: 1F764691F11C67F458B88521DA8CB349
    MSI (s) (AC:98) [17:30:42:692]: Using cached product context: machine assigned for product: 1F764691F11C67F458B88521DA8CB349
    MSI (s) (AC:98) [17:30:42:692]: Setting cached product context: machine assigned for product: 20B91A1DE71869244AB57058F37DD475
    MSI (s) (AC:98) [17:30:42:692]: Using cached product context: machine assigned for product: 20B91A1DE71869244AB57058F37DD475
    MSI (s) (AC:98) [17:30:42:693]: Setting cached product context: machine assigned for product: 25BBB29DFF28DE24A8C3E460F249A47B
    MSI (s) (AC:98) [17:30:42:693]: Using cached product context: machine assigned for product: 25BBB29DFF28DE24A8C3E460F249A47B
    MSI (s) (AC:98) [17:30:42:693]: Setting cached product context: machine assigned for product: 3A83DE762884B8444BD44382BA007D5D
    MSI (s) (AC:98) [17:30:42:693]: Using cached product context: machine assigned for product: 3A83DE762884B8444BD44382BA007D5D
    MSI (s) (AC:98) [17:30:42:693]: Setting cached product context: machine assigned for product: 4E9B274AFFA0B7F42BD56FF4E829A8BA
    MSI (s) (AC:98) [17:30:42:693]: Using cached product context: machine assigned for product: 4E9B274AFFA0B7F42BD56FF4E829A8BA
    MSI (s) (AC:98) [17:30:42:693]: Setting cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120632FF
    MSI (s) (AC:98) [17:30:42:693]: Using cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120632FF
    MSI (s) (AC:98) [17:30:42:693]: Setting cached product context: machine assigned for product: 5426BE430D8CA8D48B8DEEFB7F9A4158
    MSI (s) (AC:98) [17:30:42:693]: Using cached product context: machine assigned for product: 5426BE430D8CA8D48B8DEEFB7F9A4158
    MSI (s) (AC:98) [17:30:42:694]: Setting cached product context: machine assigned for product: 597B4F68D3AEDB84DAAFAD443B09959F
    MSI (s) (AC:98) [17:30:42:694]: Using cached product context: machine assigned for product: 597B4F68D3AEDB84DAAFAD443B09959F
    MSI (s) (AC:98) [17:30:42:694]: Setting cached product context: machine assigned for product: 59AFD9586A4EDC848BE83A4E388EB944
    MSI (s) (AC:98) [17:30:42:694]: Using cached product context: machine assigned for product: 59AFD9586A4EDC848BE83A4E388EB944
    MSI (s) (AC:98) [17:30:42:694]: Setting cached product context: machine assigned for product: 5DAB1C8C6E456414DA70A3A83D56963C
    MSI (s) (AC:98) [17:30:42:694]: Using cached product context: machine assigned for product: 5DAB1C8C6E456414DA70A3A83D56963C
    MSI (s) (AC:98) [17:30:42:694]: Setting cached product context: machine assigned for product: 68AB67CA7DA71301B744AA0100000010
    MSI (s) (AC:98) [17:30:42:694]: Using cached product context: machine assigned for product: 68AB67CA7DA71301B744AA0100000010
    MSI (s) (AC:98) [17:30:42:694]: Setting cached product context: machine assigned for product: 6E58EC68CABDDFF39B774E7BF9389C90
    MSI (s) (AC:98) [17:30:42:694]: Using cached product context: machine assigned for product: 6E58EC68CABDDFF39B774E7BF9389C90
    MSI (s) (AC:98) [17:30:42:695]: Setting cached product context: machine assigned for product: 6E815EB96CCE9A53884E7857C57002F0
    MSI (s) (AC:98) [17:30:42:695]: Using cached product context: machine assigned for product: 6E815EB96CCE9A53884E7857C57002F0
    MSI (s) (AC:98) [17:30:42:695]: Setting cached product context: machine assigned for product: 6E8A266FCD4F2A1409E1C8110F44DBCE
    MSI (s) (AC:98) [17:30:42:695]: Using cached product context: machine assigned for product: 6E8A266FCD4F2A1409E1C8110F44DBCE
    MSI (s) (AC:98) [17:30:42:695]: Setting cached product context: machine assigned for product: 811CF9E1D156439479EB5EC3EAC5D754
    MSI (s) (AC:98) [17:30:42:695]: Using cached product context: machine assigned for product: 811CF9E1D156439479EB5EC3EAC5D754
    MSI (s) (AC:98) [17:30:42:695]: Setting cached product context: machine assigned for product: 8F7463F0D15ECCF48826A9D8C0A5FC52
    MSI (s) (AC:98) [17:30:42:695]: Using cached product context: machine assigned for product: 8F7463F0D15ECCF48826A9D8C0A5FC52
    MSI (s) (AC:98) [17:30:42:695]: Setting cached product context: machine assigned for product: 91785D291CBB3CC40AB8659C8E48CCC2
    MSI (s) (AC:98) [17:30:42:695]: Using cached product context: machine assigned for product: 91785D291CBB3CC40AB8659C8E48CCC2
    MSI (s) (AC:98) [17:30:42:696]: Setting cached product context: machine assigned for product: 96F071321C0420729002000010000000
    MSI (s) (AC:98) [17:30:42:696]: Using cached product context: machine assigned for product: 96F071321C0420729002000010000000
    MSI (s) (AC:98) [17:30:42:696]: Setting cached product context: machine assigned for product: 9D674353744CB8D4B9B226639D491422
    MSI (s) (AC:98) [17:30:42:696]: Using cached product context: machine assigned for product: 9D674353744CB8D4B9B226639D491422
    MSI (s) (AC:98) [17:30:42:696]: Setting cached product context: machine assigned for product: B5DEF536D6C2EB94786EA7F6DC22CBA5
    MSI (s) (AC:98) [17:30:42:696]: Using cached product context: machine assigned for product: B5DEF536D6C2EB94786EA7F6DC22CBA5
    MSI (s) (AC:98) [17:30:42:696]: Setting cached product context: machine assigned for product: B850D529A465A3444B2BE7096C34E255
    MSI (s) (AC:98) [17:30:42:696]: Using cached product context: machine assigned for product: B850D529A465A3444B2BE7096C34E255
    MSI (s) (AC:98) [17:30:42:696]: Setting cached product context: machine assigned for product: c1c4f01781cc94c4c8fb1542c0981a2a
    MSI (s) (AC:98) [17:30:42:696]: Using cached product context: machine assigned for product: c1c4f01781cc94c4c8fb1542c0981a2a
    MSI (s) (AC:98) [17:30:42:696]: Setting cached product context: machine assigned for product: C4EA3C1C65E717E41B37DABB5A16745A
    MSI (s) (AC:98) [17:30:42:697]: Using cached product context: machine assigned for product: C4EA3C1C65E717E41B37DABB5A16745A
    MSI (s) (AC:98) [17:30:42:697]: Setting cached product context: machine assigned for product: C7937558D24AF684793B2ABC2C735239
    MSI (s) (AC:98) [17:30:42:697]: Using cached product context: machine assigned for product: C7937558D24AF684793B2ABC2C735239
    MSI (s) (AC:98) [17:30:42:697]: Setting cached product context: machine assigned for product: CFD2C1F142D260E3CB8B271543DA9F98
    MSI (s) (AC:98) [17:30:42:697]: Using cached product context: machine assigned for product: CFD2C1F142D260E3CB8B271543DA9F98
    MSI (s) (AC:98) [17:30:42:697]: Setting cached product context: machine assigned for product: D026E738E39B48D47A35EBD1EB7B611B
    MSI (s) (AC:98) [17:30:42:697]: Using cached product context: machine assigned for product: D026E738E39B48D47A35EBD1EB7B611B
    MSI (s) (AC:98) [17:30:42:697]: Setting cached product context: machine assigned for product: D0AC3A29DC55D5C4AB59C562002CF062
    MSI (s) (AC:98) [17:30:42:697]: Using cached product context: machine assigned for product: D0AC3A29DC55D5C4AB59C562002CF062
    MSI (s) (AC:98) [17:30:42:697]: Setting cached product context: machine assigned for product: D20352A90C039D93DBF6126ECE614057
    MSI (s) (AC:98) [17:30:42:698]: Using cached product context: machine assigned for product: D20352A90C039D93DBF6126ECE614057
    MSI (s) (AC:98) [17:30:42:698]: Setting cached product context: machine assigned for product: D3FAD3E096FFA5439AE9F1DE03C40A38
    MSI (s) (AC:98) [17:30:42:698]: Using cached product context: machine assigned for product: D3FAD3E096FFA5439AE9F1DE03C40A38
    MSI (s) (AC:98) [17:30:42:698]: Setting cached product context: machine assigned for product: DDA39468D428E8B4DB27C8D5DC5CA217
    MSI (s) (AC:98) [17:30:42:698]: Using cached product context: machine assigned for product: DDA39468D428E8B4DB27C8D5DC5CA217
    MSI (s) (AC:98) [17:30:42:698]: Setting cached product context: machine assigned for product: DFC90B5F2B0FFA63D84FD16F6BF37C4B
    MSI (s) (AC:98) [17:30:42:698]: Using cached product context: machine assigned for product: DFC90B5F2B0FFA63D84FD16F6BF37C4B
    MSI (s) (AC:98) [17:30:42:698]: Setting cached product context: machine assigned for product: E6B6F1511FA850947B8CD83C2643CD72
    MSI (s) (AC:98) [17:30:42:698]: Using cached product context: machine assigned for product: E6B6F1511FA850947B8CD83C2643CD72
    MSI (s) (AC:98) [17:30:42:698]: Setting cached product context: machine assigned for product: E873E3303DA65DA4DBBEBC6DB91340C6
    MSI (s) (AC:98) [17:30:42:698]: Using cached product context: machine assigned for product: E873E3303DA65DA4DBBEBC6DB91340C6
    MSI (s) (AC:98) [17:30:42:699]: Setting cached product context: machine assigned for product: F60730A4A66673047777F5728467D401
    MSI (s) (AC:98) [17:30:42:699]: Using cached product context: machine assigned for product: F60730A4A66673047777F5728467D401
    MSI (s) (AC:98) [17:30:42:699]: Setting cached product context: machine assigned for product: F73FD6EB46D8AAC408826317DFAA49FD
    MSI (s) (AC:98) [17:30:42:699]: Using cached product context: machine assigned for product: F73FD6EB46D8AAC408826317DFAA49FD
    MSI (s) (AC:98) [17:30:42:700]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (AC:98) [17:30:42:700]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2
    MSI (s) (AC:98) [17:30:42:702]: File will have security applied from OpCode.
    MSI (s) (AC:98) [17:30:42:705]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'c:\users\andi\appdata\local\temp\air4c60.tmp\setup.msi' against software restriction policy
    MSI (s) (AC:98) [17:30:42:705]: SOFTWARE RESTRICTION POLICY: c:\users\andi\appdata\local\temp\air4c60.tmp\setup.msi has a digital signature
    MSI (s) (AC:98) [17:30:42:724]: SOFTWARE RESTRICTION POLICY: c:\users\andi\appdata\local\temp\air4c60.tmp\setup.msi is permitted to run at the 'unrestricted' authorization level.
    MSI (s) (AC:98) [17:30:42:724]: End dialog not enabled
    MSI (s) (AC:98) [17:30:42:724]: Original package ==> c:\users\andi\appdata\local\temp\air4c60.tmp\setup.msi
    MSI (s) (AC:98) [17:30:42:724]: Package we're running from ==> c:\Windows\Installer\f8e83c.msi
    MSI (s) (AC:98) [17:30:42:726]: APPCOMPAT: Compatibility mode property overrides found.
    MSI (s) (AC:98) [17:30:42:726]: APPCOMPAT: looking for appcompat database entry with ProductCode '{FE23D063-934D-4829-A0D8-00634CE79B4A}'.
    MSI (s) (AC:98) [17:30:42:726]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (AC:98) [17:30:42:733]: MSCOREE not loaded loading copy from system32
    MSI (s) (AC:98) [17:30:42:738]: Machine policy value 'TransformsSecure' is 0
    MSI (s) (AC:98) [17:30:42:738]: User policy value 'TransformsAtSource' is 0
    MSI (s) (AC:98) [17:30:42:739]: Machine policy value 'DisablePatch' is 0
    MSI (s) (AC:98) [17:30:42:739]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (s) (AC:98) [17:30:42:739]: Machine policy value 'DisableLUAPatching' is 0
    MSI (s) (AC:98) [17:30:42:739]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (AC:98) [17:30:42:739]: 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) (AC:98) [17:30:42:739]: APPCOMPAT: looking for appcompat database entry with ProductCode '{FE23D063-934D-4829-A0D8-00634CE79B4A}'.
    MSI (s) (AC:98) [17:30:42:739]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (AC:98) [17:30:42:739]: Transforms are not secure.
    MSI (s) (AC:98) [17:30:42:740]: Note: 1: 2205 2:  3: Control
    MSI (s) (AC:98) [17:30:42:740]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Users\Andi\AppData\Local\Temp\MSIeb0ec.LOG'.
    MSI (s) (AC:98) [17:30:42:740]: Command Line: CURRENTDIRECTORY=C:\Users\Andi\Downloads CLIENTUILEVEL=3 MSICLIENTUSESEXTERNALUI=1 CLIENTPROCESSID=3188
    MSI (s) (AC:98) [17:30:42:740]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{EF478F1D-5BB7-42A4-B6CC-DC435C7FE410}'.
    MSI (s) (AC:98) [17:30:42:740]: Product Code passed to Engine.Initialize:           ''
    MSI (s) (AC:98) [17:30:42:740]: Product Code from property table before transforms: '{FE23D063-934D-4829-A0D8-00634CE79B4A}'
    MSI (s) (AC:98) [17:30:42:740]: Product Code from property table after transforms:  '{FE23D063-934D-4829-A0D8-00634CE79B4A}'
    MSI (s) (AC:98) [17:30:42:740]: Product not registered: beginning first-time install
    MSI (s) (AC:98) [17:30:42:740]: Product {FE23D063-934D-4829-A0D8-00634CE79B4A} is not managed.
    MSI (s) (AC:98) [17:30:42:740]: MSI_LUA: Credential prompt not required, user is an admin
    MSI (s) (AC:98) [17:30:42:740]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
    MSI (s) (AC:98) [17:30:42:740]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (AC:98) [17:30:42:740]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (AC:98) [17:30:42:740]: Adding new sources is allowed.
    MSI (s) (AC:98) [17:30:42:740]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
    MSI (s) (AC:98) [17:30:42:740]: Package name extracted from package path: 'setup.msi'
    MSI (s) (AC:98) [17:30:42:740]: Package to be registered: 'setup.msi'
    MSI (s) (AC:98) [17:30:42:740]: Note: 1: 2205 2:  3: Error
    MSI (s) (AC:98) [17:30:42:742]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (AC:98) [17:30:42:742]: Machine policy value 'DisableMsi' is 0
    MSI (s) (AC:98) [17:30:42:742]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (AC:98) [17:30:42:742]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (AC:98) [17:30:42:742]: Product installation will be elevated because user is admin and product is being installed per-machine.
    MSI (s) (AC:98) [17:30:42:742]: Running product '{FE23D063-934D-4829-A0D8-00634CE79B4A}' with elevated privileges: Product is assigned.
    MSI (s) (AC:98) [17:30:42:742]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Users\Andi\Downloads'.
    MSI (s) (AC:98) [17:30:42:742]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (AC:98) [17:30:42:742]: PROPERTY CHANGE: Adding MSICLIENTUSESEXTERNALUI property. Its value is '1'.
    MSI (s) (AC:98) [17:30:42:742]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '3188'.
    MSI (s) (AC:98) [17:30:42:742]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (AC:98) [17:30:42:742]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is 'ddf00e4e925be544b3fc7e784072a880'.
    MSI (s) (AC:98) [17:30:42:742]: RESTART MANAGER: Session opened.
    MSI (s) (AC:98) [17:30:42:742]: TRANSFORMS property is now:
    MSI (s) (AC:98) [17:30:42:742]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
    MSI (s) (AC:98) [17:30:42:744]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\AppData\Roaming
    MSI (s) (AC:98) [17:30:42:745]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\Favorites
    MSI (s) (AC:98) [17:30:42:747]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\AppData\Roaming\Microsoft\Windows\Network Shortcuts
    MSI (s) (AC:98) [17:30:42:748]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\Documents
    MSI (s) (AC:98) [17:30:42:749]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
    MSI (s) (AC:98) [17:30:42:750]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\AppData\Roaming\Microsoft\Windows\Recent
    MSI (s) (AC:98) [17:30:42:752]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (s) (AC:98) [17:30:42:753]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\AppData\Roaming\Microsoft\Windows\Templates
    MSI (s) (AC:98) [17:30:42:753]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (s) (AC:98) [17:30:42:754]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\AppData\Local
    MSI (s) (AC:98) [17:30:42:755]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\Pictures
    MSI (s) (AC:98) [17:30:42:757]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (AC:98) [17:30:42:758]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (AC:98) [17:30:42:759]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
    MSI (s) (AC:98) [17:30:42:761]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (s) (AC:98) [17:30:42:762]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (s) (AC:98) [17:30:42:764]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (AC:98) [17:30:42:765]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (AC:98) [17:30:42:767]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    MSI (s) (AC:98) [17:30:42:768]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\AppData\Roaming\Microsoft\Windows\Start Menu
    MSI (s) (AC:98) [17:30:42:769]: SHELL32::SHGetFolderPath returned: C:\Users\Andi\Desktop
    MSI (s) (AC:98) [17:30:42:771]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
    MSI (s) (AC:98) [17:30:42:771]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
    MSI (s) (AC:98) [17:30:42:771]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
    MSI (s) (AC:98) [17:30:42:780]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
    MSI (s) (AC:98) [17:30:42:780]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
    MSI (s) (AC:98) [17:30:42:780]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
    MSI (s) (AC:98) [17:30:42:780]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (AC:98) [17:30:42:780]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Gabi'.
    MSI (s) (AC:98) [17:30:42:780]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (AC:98) [17:30:42:780]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'c:\Windows\Installer\f8e83c.msi'.
    MSI (s) (AC:98) [17:30:42:780]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'c:\users\andi\appdata\local\temp\air4c60.tmp\setup.msi'.
    MSI (s) (AC:98) [17:30:42:780]: Machine policy value 'MsiDisableEmbeddedUI' is 0
    MSI (s) (AC:98) [17:30:42:780]: EEUI - Disabling MsiEmbeddedUI due to existing external or embedded UI
    MSI (s) (AC:98) [17:30:42:780]: EEUI - Disabling MsiEmbeddedUI for service because it's not a quiet/basic install
    MSI (s) (AC:98) [17:30:42:781]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (AC:98) [17:30:42:781]: Machine policy value 'DisableRollback' is 0
    MSI (s) (AC:98) [17:30:42:781]: User policy value 'DisableRollback' is 0
    MSI (s) (AC:98) [17:30:42:781]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
    === Logging started: 06.01.2012  17:30:42 ===
    MSI (s) (AC:98) [17:30:42:781]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
    MSI (s) (AC:98) [17:30:42:781]: Doing action: INSTALL
    MSI (s) (AC:98) [17:30:42:781]: Note: 1: 2205 2:  3: ActionText
    Action start 17:30:42: INSTALL.
    MSI (s) (AC:98) [17:30:42:781]: Running ExecuteSequence
    MSI (s) (AC:98) [17:30:42:782]: Doing action: FindRelatedProducts
    MSI (s) (AC:98) [17:30:42:782]: Note: 1: 2205 2:  3: ActionText
    Action start 17:30:42: FindRelatedProducts.
    MSI (s) (AC:98) [17:30:42:783]: Doing action: ValidateProductID
    MSI (s) (AC:98) [17:30:42:784]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:42: FindRelatedProducts. Return value 1.
    Action start 17:30:42: ValidateProductID.
    MSI (s) (AC:98) [17:30:42:784]: Doing action: SetSHAREDADDINFOLDER
    MSI (s) (AC:98) [17:30:42:784]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:42: ValidateProductID. Return value 1.
    MSI (s) (AC:98) [17:30:42:785]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SetSHAREDADDINFOLDER'
    MSI (s) (AC:98) [17:30:42:785]: 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:30:42: SetSHAREDADDINFOLDER.
    MSI (s) (AC:98) [17:30:42:785]: Doing action: CostInitialize
    MSI (s) (AC:98) [17:30:42:785]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:42: SetSHAREDADDINFOLDER. Return value 1.
    MSI (s) (AC:98) [17:30:42:787]: Machine policy value 'MaxPatchCacheSize' is 10
    MSI (s) (AC:98) [17:30:42:787]: Baseline: Sorting baselines for {FE23D063-934D-4829-A0D8-00634CE79B4A}.
    MSI (s) (AC:98) [17:30:42:787]: Baseline: New baseline 3.1.0 from transaction.
    MSI (s) (AC:98) [17:30:42:787]: Baseline: Sorted order Native: Order 0.
    MSI (s) (AC:98) [17:30:42:787]: Baseline Data Table:
    MSI (s) (AC:98) [17:30:42:787]: ProductCode: {FE23D063-934D-4829-A0D8-00634CE79B4A} Version: 3.1.0 Attributes: 0 PatchId: Native BaselineId: -2147483648 Order: 0
    MSI (s) (AC:98) [17:30:42:787]: Baseline File Table:
    MSI (s) (AC:98) [17:30:42:790]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'W:\'.
    MSI (s) (AC:98) [17:30:42:790]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
    MSI (s) (AC:98) [17:30:42:790]: Note: 1: 2205 2:  3: Patch
    MSI (s) (AC:98) [17:30:42:790]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (AC:98) [17:30:42:790]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (AC:98) [17:30:42:790]: Note: 1: 2205 2:  3: __MsiPatchFileList
    MSI (s) (AC:98) [17:30:42:790]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (AC:98) [17:30:42:790]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId` 
    MSI (s) (AC:98) [17:30:42:790]: Delta compression fallback method for this product transaction is 'MSI 2.0 legacy obsolescence'
    MSI (s) (AC:98) [17:30:42:790]: Note: 1: 2205 2:  3: Patch
    Action start 17:30:42: CostInitialize.
    MSI (s) (AC:98) [17:30:42:791]: Doing action: FileCost
    MSI (s) (AC:98) [17:30:42:791]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:42: CostInitialize. Return value 1.
    MSI (s) (AC:98) [17:30:42:792]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (AC:98) [17:30:42:792]: Note: 1: 2205 2:  3: Class
    MSI (s) (AC:98) [17:30:42:792]: Note: 1: 2205 2:  3: Extension
    MSI (s) (AC:98) [17:30:42:792]: Note: 1: 2205 2:  3: TypeLib
    Action start 17:30:42: FileCost.
    MSI (s) (AC:98) [17:30:42:793]: Doing action: CostFinalize
    MSI (s) (AC:98) [17:30:42:793]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:42: FileCost. Return value 1.
    MSI (s) (AC:98) [17:30:42:794]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
    MSI (s) (AC:98) [17:30:42:794]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
    MSI (s) (AC:98) [17:30:42:794]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
    MSI (s) (AC:98) [17:30:42:794]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
    MSI (s) (AC:98) [17:30:42:794]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
    MSI (s) (AC:98) [17:30:42:794]: Note: 1: 2205 2:  3: Patch
    MSI (s) (AC:98) [17:30:42:794]: Note: 1: 2205 2:  3: Condition
    MSI (s) (AC:98) [17:30:42:794]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'W:\'.
    MSI (s) (AC:98) [17:30:42:794]: PROPERTY CHANGE: Modifying WindowsFolder property. Its current value is 'C:\Windows\'. Its new value: 'c:\Windows\'.
    MSI (s) (AC:98) [17:30:42:794]: 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) (AC:98) [17:30:42:795]: 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) (AC:98) [17:30:42:795]: PROPERTY CHANGE: Adding AIR property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\'.
    MSI (s) (AC:98) [17:30:42:795]: PROPERTY CHANGE: Adding Versions property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\'.
    MSI (s) (AC:98) [17:30:42:795]: PROPERTY CHANGE: Adding Version property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\'.
    MSI (s) (AC:98) [17:30:42:795]: PROPERTY CHANGE: Adding Resources property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (AC:98) [17:30:42:795]: Target path resolution complete. Dumping Directory table...
    MSI (s) (AC:98) [17:30:42:795]: Note: target paths subject to change (via custom actions or browsing)
    MSI (s) (AC:98) [17:30:42:795]: Dir (target): Key: TARGETDIR    , Object: W:\
    MSI (s) (AC:98) [17:30:42:795]: Dir (target): Key: WindowsFolder    , Object: c:\Windows\
    MSI (s) (AC:98) [17:30:42:795]: Dir (target): Key: SHAREDADDINFOLDER    , Object: c:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller\
    MSI (s) (AC:98) [17:30:42:795]: Dir (target): Key: CommonFilesFolder    , Object: c:\Program Files (x86)\Common Files\
    MSI (s) (AC:98) [17:30:42:795]: Dir (target): Key: AIR    , Object: c:\Program Files (x86)\Common Files\Adobe AIR\
    MSI (s) (AC:98) [17:30:42:795]: Dir (target): Key: Versions    , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\
    MSI (s) (AC:98) [17:30:42:795]: Dir (target): Key: Version    , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\
    MSI (s) (AC:98) [17:30:42:795]: Dir (target): Key: Resources    , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\
    MSI (s) (AC:98) [17:30:42:795]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
    MSI (s) (AC:98) [17:30:42:795]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (AC:98) [17:30:42:795]: 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:30:42: CostFinalize.
    MSI (s) (AC:98) [17:30:42:796]: Doing action: MigrateFeatureStates
    MSI (s) (AC:98) [17:30:42:796]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:42: CostFinalize. Return value 1.
    Action start 17:30:42: MigrateFeatureStates.
    MSI (s) (AC:98) [17:30:42:797]: Doing action: InstallValidate
    MSI (s) (AC:98) [17:30:42:797]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:42: MigrateFeatureStates. Return value 0.
    MSI (s) (AC:98) [17:30:42:798]: PROPERTY CHANGE: Deleting MsiRestartManagerSessionKey property. Its current value is 'ddf00e4e925be544b3fc7e784072a880'.
    MSI (s) (AC:98) [17:30:42:798]: Note: 1: 2205 2:  3: Dialog
    MSI (s) (AC:98) [17:30:42:799]: Feature: Runtime; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (AC:98) [17:30:42:799]: Feature: Management; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (AC:98) [17:30:42:799]: Component: Runtime; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: FileTypeRegistration; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: ARPRegistration; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: template.msi; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: template.exe; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: Sentinel; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: AppInstaller; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: WebKit; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: FlashPlugin; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: Setup; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: RootCertificate; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: TimestampingRootCertificate; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: AIRAppInstaller; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: DRMADOBECPVoucher; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: DRM; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: DRM15; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: DRMAIRVoucher; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (AC:98) [17:30:42:799]: Component: __AIRAppInstaller65; Installed: Null;   Request: Local;   Action: Local;   Client State: Null
    MSI (s) (AC:98) [17:30:42:799]: Component: __FileTypeRegistration65; Installed: Null;   Request: Local;   Action: Local;   Client State: Null
    MSI (s) (AC:98) [17:30:42:799]: Component: __ARPRegistration65; Installed: Null;   Request: Local;   Action: Local;   Client State: Null
    MSI (s) (AC:98) [17:30:42:799]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (AC:98) [17:30:42:799]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (AC:98) [17:30:42:799]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (AC:98) [17:30:42:799]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (AC:98) [17:30:42:799]: Note: 1: 2205 2:  3: Extension
    MSI (s) (AC:98) [17:30:42:799]: Note: 1: 2205 2:  3: Font
    MSI (s) (AC:98) [17:30:42:799]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (AC:98) [17:30:42:799]: Note: 1: 2205 2:  3: Class
    MSI (s) (AC:98) [17:30:42:799]: Note: 1: 2205 2:  3: Icon
    MSI (s) (AC:98) [17:30:42:799]: Note: 1: 2205 2:  3: TypeLib
    Action start 17:30:42: InstallValidate.
    MSI (s) (AC:98) [17:30:42:799]: Note: 1: 2205 2:  3: _RemoveFilePath
    MSI (s) (AC:98) [17:30:42:803]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
    MSI (s) (AC:98) [17:30:42:803]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (AC:98) [17:30:42:803]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (AC:98) [17:30:42:803]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (AC:98) [17:30:42:803]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (AC:98) [17:30:42:803]: Note: 1: 2205 2:  3: Extension
    MSI (s) (AC:98) [17:30:42:803]: Note: 1: 2205 2:  3: Font
    MSI (s) (AC:98) [17:30:42:803]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (AC:98) [17:30:42:803]: Note: 1: 2205 2:  3: Class
    MSI (s) (AC:98) [17:30:42:803]: Note: 1: 2205 2:  3: Icon
    MSI (s) (AC:98) [17:30:42:803]: Note: 1: 2205 2:  3: TypeLib
    MSI (s) (AC:98) [17:30:42:804]: Note: 1: 2727 2: 
    MSI (s) (AC:98) [17:30:42:804]: Note: 1: 2205 2:  3: FilesInUse
    MSI (s) (AC:98) [17:30:42:813]: Note: 1: 2727 2: 
    MSI (s) (AC:98) [17:30:42:814]: Doing action: SetARPINSTALLLOCATION
    MSI (s) (AC:98) [17:30:42:814]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:42: InstallValidate. Return value 1.
    MSI (s) (AC:98) [17:30:42:814]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SetARPINSTALLLOCATION'
    MSI (s) (AC:98) [17:30:42:814]: PROPERTY CHANGE: Adding ARPINSTALLLOCATION property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\'.
    Action start 17:30:42: SetARPINSTALLLOCATION.
    MSI (s) (AC:98) [17:30:42:815]: Doing action: InstallInitialize
    MSI (s) (AC:98) [17:30:42:815]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:42: SetARPINSTALLLOCATION. Return value 1.
    MSI (s) (AC:98) [17:30:42:815]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (AC:98) [17:30:42:815]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (AC:98) [17:30:42:815]: BeginTransaction: Locking Server
    MSI (s) (AC:98) [17:30:42:815]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (AC:98) [17:30:42:815]: Server not locked: locking for product {FE23D063-934D-4829-A0D8-00634CE79B4A}
    Action start 17:30:42: InstallInitialize.
    MSI (s) (AC:98) [17:30:42:982]: Doing action: ProcessComponents
    MSI (s) (AC:98) [17:30:42:982]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:42: InstallInitialize. Return value 1.
    MSI (s) (AC:98) [17:30:42:986]: Note: 1: 2205 2:  3: MsiPatchCertificate
    MSI (s) (AC:98) [17:30:42:986]: LUA patching is disabled: missing MsiPatchCertificate table
    MSI (s) (AC:98) [17:30:42:986]: Resolving source.
    MSI (s) (AC:98) [17:30:42:986]: Resolving source to launched-from source.
    MSI (s) (AC:98) [17:30:42:986]: Setting launched-from source as last-used.
    MSI (s) (AC:98) [17:30:42:986]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'c:\users\andi\appdata\local\temp\air4c60.tmp\'.
    MSI (s) (AC:98) [17:30:42:986]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'c:\users\andi\appdata\local\temp\air4c60.tmp\'.
    MSI (s) (AC:98) [17:30:42:986]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{FE23D063-934D-4829-A0D8-00634CE79B4A}'.
    MSI (s) (AC:98) [17:30:42:986]: SOURCEDIR ==> c:\users\andi\appdata\local\temp\air4c60.tmp\
    MSI (s) (AC:98) [17:30:42:986]: SOURCEDIR product ==> {FE23D063-934D-4829-A0D8-00634CE79B4A}
    MSI (s) (AC:98) [17:30:42:986]: Determining source type
    MSI (s) (AC:98) [17:30:42:987]: Source type from package 'setup.msi': 0
    Action start 17:30:42: ProcessComponents.
    MSI (s) (AC:98) [17:30:42:988]: Source path resolution complete. Dumping Directory table...
    MSI (s) (AC:98) [17:30:42:988]: Dir (source): Key: TARGETDIR    , Object: c:\users\andi\appdata\local\temp\air4c60.tmp\    , LongSubPath:     , ShortSubPath:
    MSI (s) (AC:98) [17:30:42:988]: Dir (source): Key: WindowsFolder    , Object: c:\users\andi\appdata\local\temp\air4c60.tmp\    , LongSubPath:     , ShortSubPath:
    MSI (s) (AC:98) [17:30:42:988]: Dir (source): Key: SHAREDADDINFOLDER    , Object: c:\users\andi\appdata\local\temp\air4c60.tmp\    , LongSubPath:     , ShortSubPath:
    MSI (s) (AC:98) [17:30:42:988]: Dir (source): Key: CommonFilesFolder    , Object: c:\users\andi\appdata\local\temp\air4c60.tmp\    , LongSubPath:     , ShortSubPath:
    MSI (s) (AC:98) [17:30:42:988]: Dir (source): Key: AIR    , Object: c:\users\andi\appdata\local\temp\air4c60.tmp\Adobe AIR\    , LongSubPath: Adobe AIR\    , ShortSubPath: AIR\
    MSI (s) (AC:98) [17:30:42:988]: Dir (source): Key: Versions    , Object: c:\users\andi\appdata\local\temp\air4c60.tmp\Adobe AIR\Versions\    , LongSubPath: Adobe AIR\Versions\    , ShortSubPath: AIR\Versions\
    MSI (s) (AC:98) [17:30:42:988]: Dir (source): Key: Version    , Object: c:\users\andi\appdata\local\temp\air4c60.tmp\Adobe AIR\Versions\1.0\    , LongSubPath: Adobe AIR\Versions\1.0\    , ShortSubPath: AIR\Versions\Version\
    MSI (s) (AC:98) [17:30:42:988]: Dir (source): Key: Resources    , Object: c:\users\andi\appdata\local\temp\air4c60.tmp\Adobe AIR\Versions\1.0\Resources\    , LongSubPath: Adobe AIR\Versions\1.0\Resources\    , ShortSubPath: AIR\Versions\Version\R\
    MSI (s) (AC:98) [17:30:42:988]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (AC:98) [17:30:42:989]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (AC:98) [17:30:42:992]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (AC:98) [17:30:42:998]: Doing action: UnpublishFeatures
    MSI (s) (AC:98) [17:30:42:998]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:42: ProcessComponents. Return value 1.
    Action start 17:30:43: UnpublishFeatures.
    MSI (s) (AC:98) [17:30:43:001]: Doing action: RemoveRegistryValues
    MSI (s) (AC:98) [17:30:43:001]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:43: UnpublishFeatures. Return value 1.
    Action start 17:30:43: RemoveRegistryValues.
    MSI (s) (AC:98) [17:30:43:003]: Doing action: RemoveDuplicateFiles
    MSI (s) (AC:98) [17:30:43:003]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:43: RemoveRegistryValues. Return value 1.
    Action start 17:30:43: RemoveDuplicateFiles.
    MSI (s) (AC:98) [17:30:43:005]: Doing action: RemoveFiles
    MSI (s) (AC:98) [17:30:43:005]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:43: RemoveDuplicateFiles. Return value 1.
    MSI (s) (AC:98) [17:30:43:007]: Note: 1: 2205 2:  3: RemoveFile
    MSI (s) (AC:98) [17:30:43:007]: Note: 1: 2205 2:  3: RemoveFile
    Action start 17:30:43: RemoveFiles.
    MSI (s) (AC:98) [17:30:43:008]: Doing action: InstallFiles
    MSI (s) (AC:98) [17:30:43:008]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:43: RemoveFiles. Return value 0.
    MSI (s) (AC:98) [17:30:43:009]: The file represented by File table key 'SentinelFile' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'air.swf' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'template.msi' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'template.exe' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'Setup.swf' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'styles.swf' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'Adobe.cer' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'Thawte.cer' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'digest.s' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'adobecp.vch' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'AdobeAIR.vch' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'AdobeAIR.dll' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'air.exe' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'WebKit.dll' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:010]: The file represented by File table key 'NPSWF32.dll' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:011]: The file represented by File table key 'Setup.exe' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:011]: The file represented by File table key 'airappinstaller.exe' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:011]: The file represented by File table key 'adobecp.dll' has no eligible binary patches
    MSI (s) (AC:98) [17:30:43:011]: The file represented by File table key 'adobecp15.dll' has no eligible binary patches
    Action start 17:30:43: InstallFiles.
    MSI (s) (AC:98) [17:30:43:012]: Note: 1: 2205 2:  3: Patch
    MSI (s) (AC:98) [17:30:43:012]: 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) (AC:98) [17:30:43:012]: Note: 1: 2205 2:  3: Error
    MSI (s) (AC:98) [17:30:43:012]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    MSI (s) (AC:98) [17:30:43:012]: Note: 1: 2205 2:  3: MsiSFCBypass
    MSI (s) (AC:98) [17:30:43:012]: Note: 1: 2228 2:  3: MsiSFCBypass 4: SELECT `File_` FROM `MsiSFCBypass` WHERE `File_` = ?
    MSI (s) (AC:98) [17:30:43:012]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (AC:98) [17:30:43:012]: Note: 1: 2228 2:  3: MsiPatchHeaders 4: SELECT `Header` FROM `MsiPatchHeaders` WHERE `StreamRef` = ?
    MSI (s) (AC:98) [17:30:43:012]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (AC:98) [17:30:43:013]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (AC:98) [17:30:43:013]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (AC:98) [17:30:43:018]: Doing action: DuplicateFiles
    MSI (s) (AC:98) [17:30:43:018]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:43: InstallFiles. Return value 1.
    Action start 17:30:43: DuplicateFiles.
    MSI (s) (AC:98) [17:30:43:021]: Doing action: WriteRegistryValues
    MSI (s) (AC:98) [17:30:43:021]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:43: DuplicateFiles. Return value 1.
    Action start 17:30:43: WriteRegistryValues.
    MSI (s) (AC:98) [17:30:43:027]: Doing action: RegisterUser
    MSI (s) (AC:98) [17:30:43:027]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:43: WriteRegistryValues. Return value 1.
    Action start 17:30:43: RegisterUser.
    MSI (s) (AC:98) [17:30:43:029]: Doing action: RegisterProduct
    MSI (s) (AC:98) [17:30:43:029]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:43: RegisterUser. Return value 1.
    MSI (s) (AC:98) [17:30:43:030]: Note: 1: 2205 2:  3: Error
    MSI (s) (AC:98) [17:30:43:030]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    Action start 17:30:43: RegisterProduct.
    MSI (s) (AC:98) [17:30:43:032]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
    MSI (s) (AC:98) [17:30:43:032]: Doing action: PublishFeatures
    MSI (s) (AC:98) [17:30:43:032]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:43: RegisterProduct. Return value 1.
    Action start 17:30:43: PublishFeatures.
    MSI (s) (AC:98) [17:30:43:035]: Doing action: PublishProduct
    MSI (s) (AC:98) [17:30:43:035]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:43: PublishFeatures. Return value 1.
    MSI (s) (AC:98) [17:30:43:036]: Note: 1: 2205 2:  3: Icon
    MSI (s) (AC:98) [17:30:43:036]: Note: 1: 2228 2:  3: Icon 4: SELECT `Name`, `Data` FROM `Icon`
    Action start 17:30:43: PublishProduct.
    MSI (s) (AC:98) [17:30:43:038]: Doing action: InstallExecute
    MSI (s) (AC:98) [17:30:43:038]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:30:43: PublishProduct. Return value 1.
    MSI (s) (AC:98) [17:30:43:038]: Running Script: C:\Windows\Installer\MSIB24B.tmp
    MSI (s) (AC:98) [17:30:43:038]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'.
    MSI (s) (AC:98) [17:30:43:039]: Machine policy value 'DisableRollback' is 0
    MSI (s) (AC:98) [17:30:43:042]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (AC:98) [17:30:43:044]: Executing op: Header(Signature=1397708873,Version=500,Timestamp=1076267990,LangId=1033,Platform=0,Scrip tType=1,ScriptMajorVersion=21,ScriptMinorVersion=4,ScriptAttributes=1)
    Action start 17:30:43: InstallExecute.
    MSI (s) (AC:98) [17:30:43:044]: Executing op: ProductInfo(ProductKey={FE23D063-934D-4829-A0D8-00634CE79B4A},ProductName=Adobe AIR,PackageName=setup.msi,Language=1033,Version=50397184,Assignment=1,ObsoleteArg=0,,,Pac kageCode={EF478F1D-5BB7-42A4-B6CC-DC435C7FE410},,,InstanceType=0,LUASetting=0,RemoteURTIns talls=0,ProductDeploymentFlags=3)
    MSI (s) (AC:98) [17:30:43:045]: Executing op: DialogInfo(Type=0,Argument=1033)
    MSI (s) (AC:98) [17:30:43:045]: Executing op: DialogInfo(Type=1,Argument=Adobe AIR)
    MSI (s) (AC:98) [17:30:43:045]: Executing op: RollbackInfo(,RollbackAction=Rollback,RollbackDescription=Rolling back action:,RollbackTemplate=[1],CleanupAction=RollbackCleanup,CleanupDescription=Removing backup files,CleanupTemplate=File: [1])
    MSI (s) (AC:98) [17:30:43:045]: Executing op: SetBaseline(Baseline=0,)
    MSI (s) (AC:98) [17:30:43:045]: Executing op: SetBaseline(Baseline=1,)
    MSI (s) (AC:98) [17:30:43:045]: Executing op: ActionStart(Name=ProcessComponents,Description=Updating component registration,)
    MSI (s) (AC:98) [17:30:43:045]: Executing op: ProgressTotal(Total=17,Type=1,ByteEquivalent=24000)
    MSI (s) (AC:98) [17:30:43:045]: Executing op: ComponentRegister(ComponentId={701D2A09-14BE-45F8-9233-1CE0ED0023A9},KeyPath=c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (AC:98) [17:30:43:046]: WIN64DUALFOLDERS: Substitution in 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll' folder had been blocked by the 1 mask argument (the folder pair's iSwapAttrib member = 0).
    MSI (s) (AC:98) [17:30:43:047]: 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) (AC:98) [17:30:43:048]: 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) (AC:98) [17:30:43:050]: Executing op: ComponentRegister(ComponentId={8E61C856-01FD-4B39-9D18-90B226C2013C},KeyPath=c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\template.msi,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (AC:98) [17:30:43:050]: WIN64DUALFOLDERS: Substitution in 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\template.msi' folder had been blocked by the 1 mask argument (the folder pair's iSwapAttrib member = 0).
    MSI (s) (AC:98) [17:30:43:051]: Executing op: ComponentRegister(ComponentId={F748231B-0260-4E35-BFB8-7FACFDCE1711},KeyPath=c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\template.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (AC:98) [17:30:43:052]: WIN64DUALFOLDERS: Substitution in 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\template.exe' folder had been blocked by the 1 mask argument (the folder pair's iSwapAttrib member = 0).
    MSI (s) (AC:98) [17:30:43:052]: Executing op: ComponentRegister(ComponentId={DC74C3C6-CAB8-4C49-BE18-5B1DCD0D197E},KeyPath=c:\Program Files (x86)\Common Files\Adobe AIR\sentinel,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (AC:98) [17:30:43:053]: WIN64DUALFOLDERS: Substitution in 'c:\Program Files (x86)\Common Files\Adobe AIR\sentinel' folder had been blocked by the 1 mask argument (the folder pair's iSwapAttrib member = 0).
    MSI (s) (AC:98) [17:30:43:054]: Executing op: ComponentRegister(ComponentId={F5EE0D89-3BC5-4752-9EBB-533B036EA809},KeyPath=c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (AC:98) [17:30:43:054]: WIN64DUALFOLDERS: Substitution in 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe' folder had been blocked by the 1 mask argument (the folder pair's iSwapAttrib member = 0).
    MSI (s) (AC:98) [17:30:43:055]: Executing op: ComponentRegister(ComponentId={5281ED57-AD60-4235-A34D-F7571E28FC4C},KeyPath=c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (AC:98) [17:30:43:056]: WIN64DUALFOLDERS: Substitution in 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit.dll' folder had been blocked by the 1 mask argument (the folder pair's iSwapAttrib member = 0).
    MSI (s) (AC:98) [17:30:43:056]: Executing op: ComponentRegister(ComponentId={7A5778CF-5BD0-4931-8224-43B630C24273},KeyPath=c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\NPSWF32.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (AC:98) [17:30:43:057]: WIN64DUALFOLDERS: Substitution in 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\NPSWF32.dll' folder had been blocked by the 1 mask argument (the folder pair's iSwapAttrib member = 0).
    MSI (s) (AC:98) [17:30:43:058]: Executing op: ComponentRegister(ComponentId={1A511B10-11FC-4CAB-9C48-68641F09CF00},KeyPath=c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (AC:98) [17:30:43:058]: WIN64DUALFOLDERS: Substitution in 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe' folder had been blocked by the 1 mask argument (the folder pair's iSwapAttrib member = 0).
    MSI (s) (AC:98) [17:30:43:059]: Executing op: ComponentRegister(ComponentId={76C2FC36-B864-4E7A-9C96-F9B80CDE9A13},KeyPath=c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe Root Certificate.cer,State=3,,Disk=1,SharedDllRefCount=0,Binar

    HI Paul,
    no sorry, did not manage to get it running. Hopefully someone from Adobe could have a look at the installation logs.
    -- Andi

  • Adobe AIR - Inconsistencies in detecting whether Adobe AIR runtime is installed

    Hello Flex community,
    I am having issues with detecting whether Adobe AIR is installed  using the following process: http://livedocs.adobe.com/flex/3/html/help.html?content=distributing_apps_3.html
    Having installed Adobe AIR 1.5, we are at times getting a value of  not installed from the getStatus() function of the air.swf located at  http://airdownload.adobe.com/air/browserapi/air.swf
    Has anyone else faced this issue before? If so, does anyone have any  steps to resolve it?
    Thanks!
    Mauricio

    After doing some more research on the issue, I have found other users encountering the same issue we are:
    http://groups.google.com/group/air-tight/browse_thread/thread/706716c29caf0254
    http://www.flexdeveloper.eu/forums/adobe-air/air-swf%27s-getstatus-method-mistakenly-retur ns-%27available%27-when-air-is-installed/
    http://forums.adobe.com/thread/435935
    In the second thread, it says:
    “My issue seems to be specifically related to the use of "Silent Install". My client has a distribution license for the AIR runtime and is bundling the AIR installer with their installer. When Silent Install is used to install the AIR Runtime, Adobe's air.swf reports that the runtime is not installed. This happens until the user initiates an air app, at which point air.swf is able to detect the runtime installation.””
    This seems to suggest there is a bug with the Silent Installer or with the air.swf getStatus function. I tried the steps above and was able to recreated and resolve the issue. Does anyone else know of a different workaround?

  • RoboHelp Packager for Adobe AIR (BETA)

    It is so exciting. It been just a few months since we
    released Adobe RoboHelp 7 and a brand new Technical Communication
    Suite, and today we are ready to share with you guys what we
    perceive as the future of Online Help. All I can say is that Time
    flies like an arrow. With this, I welcome you all to this new world
    of Web 2.0 and the future of Online Help - check out the Public
    Beta of
    RoboHelp
    Packager for Adobe AIR
    The tool is available for Free of Cost and can be used by
    customers who have either Adobe RoboHelp 6 or Adobe RoboHelp 7 or
    the Technical Communication Suite.
    The RoboHelp Packager for Adobe® AIR™ allows you
    to convert your existing WebHelp files generated using Adobe
    RoboHelp® to an Adobe AIR application. Help and knowledge
    bases delivered as Adobe AIR application will have a consistent
    look and feel across all platforms.
    RoboHelp Packager for Adobe AIR can:
    Generate a single distributable file
    similar to a .chm file.
    Provide a variety of skins from which a user can choose from.
    In addition, for any skin a user can choose different themes, which
    control the look and feel in terms of colors and button/icons
    images.
    Provide a consistent look and feel on all platforms and
    operating systems.
    Enable you to comment, in addition to using other advanced
    features such as Breadcrumbs, Mini TOC and Security (Digital
    Signatures).
    The output generated after running this tool is an .air file.
    This is a single file that has built-in logic to install itself.
    The same file can be installed on any platform that has Adobe®
    AIR installed. Installing the Adobe AIR runtime is as seamless as
    installing the Adobe Flash® Player for your browsers.
    Another important aspect of the Adobe AIR installer file is
    that it is a single file that contains all of the information
    regarding the look and feel of the Help along with the content. It
    is one package with no separate viewer required.
    To read more about the benefits of packaging your help as
    .air file, please visit the following link:
    http://labs.adobe.com/technologies/robohelp/aboutoutput.html

    When you are comparing this to Flash, does this comparison
    extend to the requirement for each end user to install the Air
    runtime on their PCs before they can access our RoboHelp system?
    And that they will also get reminders to update to the latest
    version of Air runtime?

  • Will Adobe AIR apps work on iOS (Javascript/HTML)?

    Hello,
    I haven't been able to find any definitive answer on whether Adobe AIR apps using Javascript and HTML can work on iOS.
    Anyone know for sure?
    And if so, what happens with the APIs available through these swfs that we currently include:
    networkInfoWrapper.swf
    servicemonitor.swf
    applicationupdater_ui.swf
    Many thanks
    Stephen

    The answer is no. Apps developed for AIR using HTML and JavaScript are not supported on iOS or other mobile platforms. The mobile platforms do include a StageWebView component that can be used to load and display HTML and JavaScript. However, it is entirely different than the HTMLLoader control used on the desktop platforms (for HTML-based AIR apps). You cannot, for example, call any AIR/Flash APIs from JavaScript running in a StageWebView. In general, very little communication is possible between your ActionScript application code and the JavaScript code running in the StageWebView object.

  • Adobe Air Error message on start-up.

    Hi
    I have been getting the same error message on start up for some time. (Adobe Air is damaged). I have tried uninstalling, re-installing but still get the message and on certain websites I get 'missing plug-in' messages (usually involving playback of audio or video). I am running Windows Vista.
    This is my install log: I hope you can help....
    [2010-11-25:18:15:14] Performing runtime update
    [2010-11-25:18:15:14] UI SWF load is complete
    [2010-11-25:18:15:15] UI initialized
    [2010-11-25:18:15:15] starting user confirmation
    [2010-11-25:18:15:15] Version of this installer: 2.0.3.13070
    [2010-11-25:18:15:15] Installed version: 1.5.3.9120
    [2010-11-25:18:15:15] Installation type: patchNewer
    [2010-11-25:18:17:00] begin quitting
    [2010-11-25:18:17:00] attempting launch of Adobe Community Help
    [2011-11-10:07:47:32] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86
    [2011-11-10:07:47:32] Commandline is: -update "c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe"
    [2011-11-10:07:47:32] Installed runtime (1.5.3.9120) located at C:\Program Files\Common Files\Adobe AIR
    [2011-11-10:07:47:33] Installed app (BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1) located at c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe
    [2011-11-10:07:48:39] Relaunching with elevation
    [2011-11-10:07:48:39] Launching subprocess with commandline c:\users\phil\appdata\local\temp\airb0a8.tmp\adobe air installer.exe -ei
    [2011-11-10:07:48:42] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86
    [2011-11-10:07:48:42] Commandline is: -stdio \\.\pipe\AIR_2692_0 -ei
    [2011-11-10:07:48:42] Installed runtime (1.5.3.9120) located at C:\Program Files\Common Files\Adobe AIR
    [2011-11-10:07:48:42] Starting silent runtime update. Updating runtime from version 1.5.3.9120 to version 2.7.1.19610
    [2011-11-10:07:48:42] Installing msi at c:\users\phil\appdata\local\temp\airb0a8.tmp\setup.msi with guid {FDB3B167-F4FA-461D-976F-286304A57B2A}
    [2011-11-10:07:49:19] Runtime Installer end with exit code 0
    [2011-11-10:07:49:19] Elevated install completed
    [2011-11-10:07:50:26] Launching subprocess with commandline c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe
    [2011-11-10:07:50:26] Runtime Installer end with exit code 0
    [2011-11-10:07:51:14] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-11-10:07:51:16] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86
    [2011-11-10:07:51:16] Commandline is: -updatecheck
    [2011-11-10:07:51:16] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-10:07:51:16] Performing pingback request
    [2011-11-10:07:51:17] Pingback request completed with HTTP status 200
    [2011-11-10:07:51:17] Starting runtime background update check
    [2011-11-10:07:51:17] Clearing unused background update directory
    [2011-11-10:07:51:17] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/2.7.1.19610/update
    [2011-11-10:07:51:17] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/2.7.1.19610/update to C:\Users\phil\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-11-10:07:52:02] Unpackaging complete
    [2011-11-10:07:52:02] Download success
    [2011-11-10:07:52:02] Runtime updated downloaded
    [2011-11-10:07:52:11] User had deferred installing the update
    [2011-11-10:07:52:11] Runtime Installer end with exit code 0
    [2011-11-10:15:38:47] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe"
    [2011-11-10:15:39:06] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86
    [2011-11-10:15:39:06] Commandline is: -applyupdates "c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe"
    [2011-11-10:15:39:06] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-10:15:39:07] Installed app (BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1) located at c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe
    [2011-11-10:15:39:08] Starting runtime background update installation
    [2011-11-10:15:39:08] Launching subprocess with commandline C:\Users\phil\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update "c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe"
    [2011-11-10:15:39:08] Runtime updater successfully launched
    [2011-11-10:15:39:08] Runtime Installer end with exit code 0
    [2011-11-10:15:39:17] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-10:15:39:17] Commandline is: -update "c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe"
    [2011-11-10:15:39:17] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-10:15:39:17] Installed app (BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1) located at c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe
    [2011-11-10:15:39:26] Launching subprocess with commandline c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe
    [2011-11-10:15:39:26] Runtime Installer end with exit code 6
    [2011-11-17:08:15:22] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-11-17:08:15:23] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86
    [2011-11-17:08:15:23] Commandline is: -updatecheck
    [2011-11-17:08:15:23] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-17:08:15:26] Performing pingback request
    [2011-11-17:08:15:26] Starting runtime background update check
    [2011-11-17:08:15:26] Clearing unused background update directory
    [2011-11-17:08:15:27] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/2.7.1.19610/update
    [2011-11-17:08:15:27] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/2.7.1.19610/update to C:\Users\phil\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-11-17:08:16:14] Unpackaging complete
    [2011-11-17:08:16:14] Download success
    [2011-11-17:08:16:14] Runtime updated downloaded
    [2011-11-17:08:17:31] User had deferred installing the update
    [2011-11-17:08:17:31] Runtime Installer end with exit code 0
    [2011-11-18:01:30:01] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe"
    [2011-11-18:01:30:03] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86
    [2011-11-18:01:30:03] Commandline is: -applyupdates "c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe"
    [2011-11-18:01:30:03] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-18:01:30:05] Installed app (BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1) located at c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe
    [2011-11-18:01:30:14] Starting runtime background update installation
    [2011-11-18:01:30:14] Launching subprocess with commandline C:\Users\phil\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update "c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe"
    [2011-11-18:01:30:22] Runtime updater successfully launched
    [2011-11-18:01:30:22] Runtime Installer end with exit code 0
    [2011-11-18:01:31:10] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-18:01:31:10] Commandline is: -update "c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe"
    [2011-11-18:01:31:10] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-18:01:31:10] Installed app (BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1) located at c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe
    [2011-11-18:01:34:09] Relaunching with elevation
    [2011-11-18:01:34:09] Launching subprocess with commandline c:\users\phil\appdata\local\temp\aire732.tmp\adobe air installer.exe -ei
    [2011-11-18:01:34:12] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-18:01:34:12] Commandline is: -stdio \\.\pipe\AIR_5188_0 -ei
    [2011-11-18:01:34:12] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-18:01:34:13] Starting silent runtime update. Updating runtime from version 2.7.1.19610 to version 3.1.0.4880
    [2011-11-18:01:34:13] Installing msi at c:\users\phil\appdata\local\temp\aire732.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-11-18:01:35:30] Runtime Installer end with exit code 0
    [2011-11-18:01:35:30] Elevated install completed
    [2011-11-18:01:48:44] Launching subprocess with commandline c:\program files\bbc iplayer desktop\bbc iplayer desktop.exe
    [2011-11-18:01:48:45] Runtime Installer end with exit code 0
    [2011-11-18:01:49:40] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-11-18:01:49:41] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-18:01:49:41] Commandline is: -updatecheck
    [2011-11-18:01:49:41] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-18:01:49:43] Performing pingback request
    [2011-11-18:01:49:44] Pingback request completed with HTTP status 200
    [2011-11-18:01:49:44] Starting runtime background update check
    [2011-11-18:01:49:44] Clearing unused background update directory
    [2011-11-18:01:49:45] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update
    [2011-11-18:01:49:45] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update to C:\Users\phil\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-11-18:01:49:45] Runtime update not available
    [2011-11-18:01:49:45] Unpackaging cancelled
    [2011-11-18:01:49:45] Runtime Installer end with exit code 0
    [2011-11-20:02:03:50] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-20:02:03:51] Commandline is: -arp:uninstall
    [2011-11-20:02:03:52] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-20:02:04:04] Relaunching with elevation
    [2011-11-20:02:04:04] Launching subprocess with commandline c:\program files\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    [2011-11-20:02:04:05] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-20:02:04:05] Commandline is: -stdio \\.\pipe\AIR_972_0 -eu
    [2011-11-20:02:04:05] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-20:02:04:05] Starting runtime uninstall. Uninstalling runtime version 3.1.0.4880
    [2011-11-20:02:04:06] Uninstalling product with GUID {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-11-20:02:04:34] Runtime Installer end with exit code 0
    [2011-11-20:02:04:36] Elevated install completed
    [2011-11-20:02:04:36] Runtime Installer end with exit code 0
    [2011-11-20:13:42:07] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86
    [2011-11-20:13:42:08] Commandline is: -arp:uninstall
    [2011-11-20:13:42:08] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-20:13:42:09] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="app:/setup.swf" errorID=0]
    [2011-11-20:14:20:01] Runtime Installer begin with version 2.7.1.19610 on Windows Vista x86
    [2011-11-20:14:20:01] Commandline is: -arp:uninstall
    [2011-11-20:14:20:01] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-20:14:20:01] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="app:/setup.swf" errorID=0]
    [2011-11-20:14:21:26] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-20:14:21:26] Commandline is:
    [2011-11-20:14:21:26] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-20:14:21:39] Relaunching with elevation
    [2011-11-20:14:21:39] Launching subprocess with commandline c:\users\phil\appdata\local\temp\airfec8.tmp\adobe air installer.exe -ei
    [2011-11-20:14:21:42] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-20:14:21:42] Commandline is: -stdio \\.\pipe\AIR_5648_0 -ei
    [2011-11-20:14:21:42] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-20:14:21:42] Starting silent runtime update. Updating runtime from version 2.7.1.19610 to version 3.1.0.4880
    [2011-11-20:14:21:42] Installing msi at c:\users\phil\appdata\local\temp\airfec8.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-11-20:14:22:17] Runtime Installer end with exit code 1
    [2011-11-20:14:22:17] Elevated install completed
    [2011-11-20:14:24:12] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-20:14:24:12] Commandline is:
    [2011-11-20:14:24:12] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-20:14:24:22] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-11-20:14:24:22] Runtime Installer end with exit code 0
    [2011-11-20:14:24:22] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-20:14:24:22] Commandline is: -installupdatecheck
    [2011-11-20:14:24:22] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-20:14:24:24] Performing pingback request
    [2011-11-20:14:24:25] Pingback request completed with HTTP status 200
    [2011-11-20:14:24:25] Starting runtime background update check
    [2011-11-20:14:24:25] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update
    [2011-11-20:14:24:25] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update to C:\Users\phil\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-11-20:14:24:25] Runtime update not available
    [2011-11-20:14:24:25] Unpackaging cancelled
    [2011-11-20:14:24:25] Runtime Installer end with exit code 0
    [2011-11-20:15:24:58] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-20:15:24:58] Commandline is: -arp:uninstall
    [2011-11-20:15:24:58] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-20:15:25:09] Relaunching with elevation
    [2011-11-20:15:25:09] Launching subprocess with commandline c:\program files\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    [2011-11-20:15:25:10] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-20:15:25:10] Commandline is: -stdio \\.\pipe\AIR_4008_0 -eu
    [2011-11-20:15:25:10] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-20:15:25:10] Starting runtime uninstall. Uninstalling runtime version 3.1.0.4880
    [2011-11-20:15:25:11] Uninstalling product with GUID {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-11-20:15:25:17] Runtime Installer end with exit code 0
    [2011-11-20:15:25:18] Elevated install completed
    [2011-11-20:15:25:18] Runtime Installer end with exit code 0
    [2011-11-21:08:38:42] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-21:08:38:42] Commandline is:
    [2011-11-21:08:38:42] No installed runtime detected
    [2011-11-21:08:38:47] Relaunching with elevation
    [2011-11-21:08:38:47] Launching subprocess with commandline c:\users\phil\appdata\local\temp\air8999.tmp\adobe air installer.exe -ei
    [2011-11-21:08:38:50] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-21:08:38:50] Commandline is: -stdio \\.\pipe\AIR_3452_0 -ei
    [2011-11-21:08:38:50] No installed runtime detected
    [2011-11-21:08:38:50] Starting silent runtime install. Installing runtime version 3.1.0.4880
    [2011-11-21:08:38:51] Installing msi at c:\users\phil\appdata\local\temp\air8999.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-11-21:08:38:56] Runtime Installer end with exit code 0
    [2011-11-21:08:38:56] Elevated install completed
    [2011-11-21:08:39:01] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-11-21:08:39:01] Runtime Installer end with exit code 0
    [2011-11-21:08:39:02] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-21:08:39:02] Commandline is: -installupdatecheck
    [2011-11-21:08:39:02] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-21:08:39:04] Performing pingback request
    [2011-11-21:08:39:05] Pingback request completed with HTTP status 200
    [2011-11-21:08:39:05] Starting runtime background update check
    [2011-11-21:08:39:05] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update
    [2011-11-21:08:39:05] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update to C:\Users\phil\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-11-21:08:39:05] Runtime update not available
    [2011-11-21:08:39:05] Unpackaging cancelled
    [2011-11-21:08:39:05] Runtime Installer end with exit code 0
    [2011-11-24:08:23:57] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-24:08:23:57] Commandline is: -arp:uninstall
    [2011-11-24:08:23:57] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-24:08:24:09] Relaunching with elevation
    [2011-11-24:08:24:09] Launching subprocess with commandline c:\program files\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    [2011-11-24:08:24:10] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-24:08:24:10] Commandline is: -stdio \\.\pipe\AIR_5664_0 -eu
    [2011-11-24:08:24:10] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-24:08:24:10] Starting runtime uninstall. Uninstalling runtime version 3.1.0.4880
    [2011-11-24:08:24:11] Uninstalling product with GUID {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-11-24:08:24:15] Runtime Installer end with exit code 0
    [2011-11-24:08:24:15] Elevated install completed
    [2011-11-24:08:24:16] Runtime Installer end with exit code 0
    [2011-11-27:16:53:04] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-27:16:53:04] Commandline is:
    [2011-11-27:16:53:04] No installed runtime detected
    [2011-11-27:16:53:17] Relaunching with elevation
    [2011-11-27:16:53:17] Launching subprocess with commandline c:\users\phil\appdata\local\temp\air80b.tmp\adobe air installer.exe -ei
    [2011-11-27:16:53:22] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-27:16:53:22] Commandline is: -stdio \\.\pipe\AIR_3560_0 -ei
    [2011-11-27:16:53:22] No installed runtime detected
    [2011-11-27:16:53:23] Starting silent runtime install. Installing runtime version 3.1.0.4880
    [2011-11-27:16:53:23] Installing msi at c:\users\phil\appdata\local\temp\air80b.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-11-27:16:53:33] Runtime Installer end with exit code 0
    [2011-11-27:16:53:33] Elevated install completed
    [2011-11-27:17:01:40] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-11-27:17:01:40] Runtime Installer end with exit code 0
    [2011-11-27:17:01:40] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-11-27:17:01:40] Commandline is: -installupdatecheck
    [2011-11-27:17:01:40] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-11-27:17:01:42] Performing pingback request
    [2011-11-27:17:01:43] Pingback request completed with HTTP status 200
    [2011-11-27:17:01:43] Starting runtime background update check
    [2011-11-27:17:01:43] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update
    [2011-11-27:17:01:43] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update to C:\Users\phil\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-11-27:17:01:43] Runtime update not available
    [2011-11-27:17:01:43] Unpackaging cancelled
    [2011-11-27:17:01:43] Runtime Installer end with exit code 0
    [2011-12-17:18:25:49] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-17:18:25:49] Commandline is:
    [2011-12-17:18:25:49] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-17:18:26:14] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-12-17:18:26:14] Runtime Installer end with exit code 0
    [2011-12-17:18:26:14] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-17:18:26:14] Commandline is: -installupdatecheck
    [2011-12-17:18:26:14] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-17:18:26:16] Performing pingback request
    [2011-12-17:18:26:16] Pingback request completed with HTTP status 200
    [2011-12-17:18:26:16] Starting runtime background update check
    [2011-12-17:18:26:16] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update
    [2011-12-17:18:26:16] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update to C:\Users\phil\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-12-17:18:26:16] Runtime update not available
    [2011-12-17:18:26:16] Unpackaging cancelled
    [2011-12-17:18:26:16] Runtime Installer end with exit code 0
    [2011-12-17:18:26:40] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-17:18:26:40] Commandline is: -arp:uninstall
    [2011-12-17:18:26:40] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-17:18:26:54] Relaunching with elevation
    [2011-12-17:18:26:54] Launching subprocess with commandline c:\program files\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    [2011-12-17:18:26:54] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-17:18:26:54] Commandline is: -stdio \\.\pipe\AIR_2368_0 -eu
    [2011-12-17:18:26:54] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-17:18:26:54] Starting runtime uninstall. Uninstalling runtime version 3.1.0.4880
    [2011-12-17:18:26:54] Uninstalling product with GUID {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-12-17:18:26:57] Runtime Installer end with exit code 0
    [2011-12-17:18:26:57] Elevated install completed
    [2011-12-17:18:26:58] Runtime Installer end with exit code 0
    [2011-12-17:18:28:21] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-17:18:28:21] Commandline is:
    [2011-12-17:18:28:21] No installed runtime detected
    [2011-12-17:18:29:40] Relaunching with elevation
    [2011-12-17:18:29:40] Launching subprocess with commandline c:\users\phil\appdata\local\temp\air8c39.tmp\adobe air installer.exe -ei
    [2011-12-17:18:29:46] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-17:18:29:46] Commandline is: -stdio \\.\pipe\AIR_4416_0 -ei
    [2011-12-17:18:29:46] No installed runtime detected
    [2011-12-17:18:29:47] Starting silent runtime install. Installing runtime version 3.1.0.4880
    [2011-12-17:18:29:47] Installing msi at c:\users\phil\appdata\local\temp\air8c39.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-12-17:18:30:33] Runtime Installer end with exit code 0
    [2011-12-17:18:30:33] Elevated install completed
    [2011-12-17:18:31:10] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-12-17:18:31:10] Runtime Installer end with exit code 0
    [2011-12-17:18:31:36] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-17:18:31:36] Commandline is: -installupdatecheck
    [2011-12-17:18:31:36] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-17:18:31:37] Performing pingback request
    [2011-12-17:18:31:38] Pingback request completed with HTTP status 200
    [2011-12-17:18:31:38] Starting runtime background update check
    [2011-12-17:18:31:38] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update
    [2011-12-17:18:31:38] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update to C:\Users\phil\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-12-17:18:31:38] Runtime update not available
    [2011-12-17:18:31:38] Unpackaging cancelled
    [2011-12-17:18:31:38] Runtime Installer end with exit code 0
    [2011-12-17:18:46:18] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-17:18:46:18] Commandline is: C:\Users\phil\AppData\Local\Temp\wz2379\adobe_media_player.air
    [2011-12-17:18:46:18] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-17:18:46:19] Unpackaging file:///C:/Users/phil/AppData/Local/Temp/wz2379/adobe_media_player.air to C:\Users\phil\AppData\Local\Temp\fla32C4.tmp
    [2011-12-17:18:46:21] Application signature verified
    [2011-12-17:18:46:21] Unpackaging/validation complete
    [2011-12-17:18:46:21] Installed app (com.adobe.amp.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1) located at C:\Program Files\Adobe Media Player\Adobe Media Player.exe
    [2011-12-17:18:46:28] Converting unpackaged application to a native installation package in C:\Users\phil\AppData\Local\Temp\fla5449.tmp
    [2011-12-17:18:46:29] Native installation package creation succeeded
    [2011-12-17:18:46:29] Starting app update of C:\Program Files. Updating from com.adobe.amp.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 version 1.1 to com.adobe.amp.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 version 1.8 using the source file at file:///C:/Users/phil/AppData/Local/Temp/wz2379/adobe_media_player.air
    [2011-12-17:18:46:29] Installing msi at C:\Users\phil\AppData\Local\Temp\fla5449.tmp\setup.msi with guid {47372326-9AFF-B64A-44DD-173AB892BC2F}
    [2011-12-17:18:46:31] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-17:18:46:31] Rolling back install of C:\Users\phil\AppData\Local\Temp\fla5449.tmp\setup.msi
    [2011-12-17:18:46:31] Rollback complete
    [2011-12-17:18:46:31] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-12-17:18:46:31] 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\Adobe Media Player\Adobe Media Player.exe" file:///C:/Users/phil/AppData/Local/Temp/wz2379/adobe_media_player.air 1.8
    [2011-12-17:18:46:31] Relaunching with elevation
    [2011-12-17:18:46:36] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-17:18:46:36] Commandline is: -stdio \\.\pipe\AIR_4212_0 -runtime "c:\Program Files\Common Files" -update -silent -logToStdout "C:\Program Files\Adobe Media Player\Adobe Media Player.exe" file:///C:/Users/phil/AppData/Local/Temp/wz2379/adobe_media_player.air 1.8
    [2011-12-17:18:46:36] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-17:18:46:37] Installed app (com.adobe.amp.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1) located at C:\Program Files\Adobe Media Player\Adobe Media Player.exe
    [2011-12-17:18:46:37] Unpackaging file:///C:/Users/phil/AppData/Local/Temp/wz2379/adobe_media_player.air to C:\Users\phil\AppData\Local\Temp\fla78F8.tmp
    [2011-12-17:18:46:38] Application signature verified
    [2011-12-17:18:46:38] Unpackaging/validation complete
    [2011-12-17:18:46:38] Converting unpackaged application to a native installation package in C:\Users\phil\AppData\Local\Temp\fla7C14.tmp
    [2011-12-17:18:46:39] Native installation package creation succeeded
    [2011-12-17:18:46:39] Starting silent app update of C:\Program Files. Updating from com.adobe.amp.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 version 1.1 to com.adobe.amp.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 version 1.8 using the source file at file:///C:/Users/phil/AppData/Local/Temp/wz2379/adobe_media_player.air
    [2011-12-17:18:46:39] Installing msi at C:\Users\phil\AppData\Local\Temp\fla7C14.tmp\setup.msi with guid {47372326-9AFF-B64A-44DD-173AB892BC2F}
    [2011-12-17:18:46:43] Application Installer end with exit code 0
    [2011-12-17:18:46:43] Elevated install completed
    [2011-12-17:18:46:43] Launching subprocess with commandline C:\Program Files\Adobe Media Player\Adobe Media Player.exe
    [2011-12-17:18:46:43] Application Installer end with exit code 0
    [2011-12-23:15:30:58] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-23:15:30:59] Commandline is: -arp:uninstall
    [2011-12-23:15:30:59] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-23:15:31:44] Relaunching with elevation
    [2011-12-23:15:31:44] Launching subprocess with commandline c:\program files\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    [2011-12-23:15:31:45] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-23:15:31:45] Commandline is: -stdio \\.\pipe\AIR_3412_0 -eu
    [2011-12-23:15:31:45] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-23:15:31:45] Starting runtime uninstall. Uninstalling runtime version 3.1.0.4880
    [2011-12-23:15:31:45] Uninstalling product with GUID {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-12-23:15:32:22] Runtime Installer end with exit code 0
    [2011-12-23:15:32:22] Elevated install completed
    [2011-12-23:15:32:23] Runtime Installer end with exit code 0
    [2011-12-23:15:34:37] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-23:15:34:37] Commandline is:
    [2011-12-23:15:34:37] No installed runtime detected
    [2011-12-23:15:34:41] Relaunching with elevation
    [2011-12-23:15:34:41] Launching subprocess with commandline c:\users\phil\appdata\local\temp\airbce8.tmp\adobe air installer.exe -ei
    [2011-12-23:15:34:44] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-23:15:34:44] Commandline is: -stdio \\.\pipe\AIR_2360_0 -ei
    [2011-12-23:15:34:44] No installed runtime detected
    [2011-12-23:15:34:44] Starting silent runtime install. Installing runtime version 3.1.0.4880
    [2011-12-23:15:34:44] Installing msi at c:\users\phil\appdata\local\temp\airbce8.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-12-23:15:34:54] Runtime Installer end with exit code 0
    [2011-12-23:15:34:54] Elevated install completed
    [2011-12-23:15:35:33] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-12-23:15:35:33] Runtime Installer end with exit code 0
    [2011-12-23:15:35:33] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-23:15:35:33] Commandline is: -installupdatecheck
    [2011-12-23:15:35:33] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-23:15:35:34] Performing pingback request
    [2011-12-23:15:35:35] Pingback request completed with HTTP status 200
    [2011-12-23:15:35:35] Starting runtime background update check
    [2011-12-23:15:35:35] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update
    [2011-12-23:15:35:35] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update to C:\Users\phil\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-12-23:15:35:35] Runtime update not available
    [2011-12-23:15:35:35] Unpackaging cancelled
    [2011-12-23:15:35:35] Runtime Installer end with exit code 0
    [2011-12-29:14:33:01] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-29:14:33:01] Commandline is:
    [2011-12-29:14:33:01] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-29:14:33:08] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-12-29:14:33:08] Runtime Installer end with exit code 0
    [2011-12-29:14:33:10] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-29:14:33:10] Commandline is: -installupdatecheck
    [2011-12-29:14:33:10] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2011-12-29:14:33:11] Performing pingback request
    [2011-12-29:14:33:11] Pingback request completed with HTTP status 200
    [2011-12-29:14:33:11] Starting runtime background update check
    [2011-12-29:14:33:11] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update
    [2011-12-29:14:33:11] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update to C:\Users\phil\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-12-29:14:33:11] Runtime update not available
    [2011-12-29:14:33:11] Unpackaging cancelled
    [2011-12-29:14:33:12] Runtime Installer end with exit code 0
    [2012-01-01:08:36:36] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-01:08:36:36] Commandline is: -playerVersion=11,1,102,55 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -urlhttp://download.macromedia.com/pub/developer/air/sample_apps/RoadFinder.air
    [2012-01-01:08:36:36] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2012-01-01:08:36:40] Begin air file download from http://download.macromedia.com/pub/developer/air/sample_apps/RoadFinder.air
    [2012-01-01:08:36:40] Download destination is C:\Users\phil\AppData\Local\Temp\flaE7EF.tmp
    [2012-01-01:08:36:40] Received download status 200
    [2012-01-01:08:36:40] Response URL is http://download.macromedia.com/pub/developer/air/sample_apps/RoadFinder.air
    [2012-01-01:08:36:41] Download success
    [2012-01-01:08:36:49] Unpackaging file:///C:/Users/phil/AppData/Local/Temp/flaE7EF.tmp to C:\Users\phil\AppData\Local\Temp\flaC12.tmp
    [2012-01-01:08:36:53] Application signature verified
    [2012-01-01:08:36:53] Unpackaging/validation complete
    [2012-01-01:08:36:53] No app located for appID 'com.adobe.air.samples.roadfinder' and pubID '419D633A757E8B26DD2BDB301927BA7BA7490F38.1'
    [2012-01-01:08:37:11] Converting unpackaged application to a native installation package in C:\Users\phil\AppData\Local\Temp\fla6318.tmp
    [2012-01-01:08:37:14] Native installation package creation succeeded
    [2012-01-01:08:37:14] Starting app installation to C:\Program Files\AIR Examples. Installing app com.adobe.air.samples.roadfinder.419D633A757E8B26DD2BDB301927BA7BA7490F38.1 version 1.2 using the source file at file:///C:/Users/phil/AppData/Local/Temp/flaE7EF.tmp
    [2012-01-01:08:37:14] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Directory can't be written to" errorID=5006]
    [2012-01-01:08:37:14] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime "c:\Program Files\Common Files" -silent -logToStdout -url -location "C:\Program Files\AIR Examples" -desktopShortcut -programMenu file:///C:/Users/phil/AppData/Local/Temp/flaE7EF.tmp
    [2012-01-01:08:37:14] Relaunching with elevation
    [2012-01-01:08:37:22] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-01:08:37:22] Commandline is: -stdio \\.\pipe\AIR_6072_0 -runtime "c:\Program Files\Common Files" -silent -logToStdout -url -location "C:\Program Files\AIR Examples" -desktopShortcut -programMenu file:///C:/Users/phil/AppData/Local/Temp/flaE7EF.tmp
    [2012-01-01:08:37:22] Installed runtime (3.1.0.4880) located at c:\Program Files\Common Files\Adobe AIR
    [2012-01-01:08:37:23] Unpackaging file:///C:/Users/phil/AppData/Local/Temp/flaE7EF.tmp to C:\Users\phil\AppData\Local\Temp\fla8F83.tmp
    [2012-01-01:08:37:23] Application signature verified
    [2012-01-01:08:37:23] Unpackaging/validation complete
    [2012-01-01:08:37:23] No app located for appID 'com.adobe.air.samples.roadfinder' and pubID '419D633A757E8B26DD2BDB301927BA7BA7490F38.1'
    [2012-01-01:08:37:23] Converting unpackaged application to a native installation package in C:\Users\phil\AppData\Local\Temp\fla9251.tmp
    [2012-01-01:08:37:24] Native installation package creation succeeded
    [2012-01-01:08:37:25] Starting silent app installation to C:\Program Files\AIR Examples. Installing app com.adobe.air.samples.roadfinder.419D633A757E8B26DD2BDB301927BA7BA7490F38.1 version 1.2 using the source file at file:///C:/Users/phil/AppData/Local/Temp/flaE7EF.tmp
    [2012-01-01:08:37:25] Installing msi at C:\Users\phil\AppData\Local\Temp\fla9251.tmp\setup.msi with guid {911016D2-7A53-D414-2B51-F25FB4A2C55A}
    [2012-01-01:08:37:39] Application Installer end with exit code 0
    [2012-01-01:08:37:39] Elevated install completed
    [2012-01-01:08:37:39] Launching subprocess with commandline C:\Program Files\AIR Examples\RoadFinder\RoadFinder.exe
    [2012-01-01:08:37:40] Application Installer end with exit code 0

    Adobe AIR is not the Adobe Flash Player plugin for browsers, so the 'missing plugin on certain websites' problem is a problem of the Flash Player, not AIR.
    I'm wondering what happens when you uninstall and then reinstall both AIR and Flash Player via these links:
    http://get.adobe.com/air/
    http://get.adobe.com/flashplayer/

  • How to read serial number of adobe air runtime / flash plugin

    Hi
    Question:
    Is there a way of extracting a unique serial number (or assembly number) from the air runtime and the flash player.
    Background:
    I asked this question on Experts Exchange and the consensus was that it's not possible. However, I thought I would try here before I gave up.
    I am using flash remoting and I want to pair a user's subscription with a specific flash player or adobe air runtime. The flash application would interrogate the flash player and send it back to a database using remoting. If the serial number was correct then the user would get access. If not they would be rejected. The same would happen with an Air application but the serial number would be pushed instead of pulled.
    Mplord of EE introduced me to the Capabilities class (Flash) and the NativeApplication.nativeApplication class and method (Air). However, it's not really what I was looking for. In c# and vb.NET it's possible to extract the windows serial number from the OS and I'm looking for a similar function in as3.
    If this was possible it would be a fantastic way to protect your content and it would be really easy for Adobe to build this feature in.
    Thanks in advance for any help.
    Kind Regards

    Sorry, but you are at the wrong forum; this one is only for discussions on the forums themselves. The Air forums are here:
    http://forums.adobe.com/community/air

  • Adobe Air 3.0 iOS streaming H264/Speex over RTMP -- No Video

    Problem:
    H264/Speex RTMP stream from Flash Media Server doesn't display video.  Audio plays fine.
    Conditions:
    Adobe Air 3.0
    iOS device (iPad 2, iOS4.3)
    App settings:
    <renderMode>direct</renderMode>
    Flash Builder 4.5.1 compiler settings:
    -swf-version=13
    -target-player=11.0.0
    I have tried using both stageVideo and the regular Video object to render an H264 signal streaming from Flash Media Server over rtmp, but with no luck.  I can hear the audio, but the video is never rendered.
    I CAN see H263 video when streamed over RTMP using this setup (with just the Video object). 
    I can also stream a locally stored mp4 (H264/AAC) file over rtmp from the iOS device and play it locally just fine (using a stageVideo object).
    I have attempted this with both stageVideo (which works fine when streaming an mp4 file from the iOS device) and with the regular Video object (the regular Video object handles H263 just fine streaming down from FMS over rtmp).  I've also played around with backgroundAlpha = "0" for this case, all with no luck.
    I've followed all the online instructions and tutorials to get this working for the past week, but have not had any luck.  I'm happy to post more code, but this approach is fairly straight forward and has been described multiple times around these forums and in the adobe blog posts.  It goes like this:
         - instantiate NetConnection (_nc) to FMS and wait for successful connection:
                   _ns = new NetConnection();  
                   _nc.connect(serverAddress);
         - instantiate NetStream (_ns) and connect using NetConnection: 
                   _ns = new NetStream(_nc);
         - setup listener for StageVideoAvailabilityEvent; if stageVideo becomes available, attach _ns: 
                  _stageVideo = stage.stageVideos[0];
                  _stageVideo = _stageVideo.attachNetStream(_ns);
         - if stageVideo ISN'T available, fall back to Video object:
                   _video = new Video();
                   _video.attachNetStream(_ns);
                   stage.addChild(_video);
         - play netStream app:
                   _ns.play(appName);
    My renderMode is set correctly ("direct"), and from what I can tell, this isn't a backgroundAlpha issue.
    I have seen this problem described elsewhere on this forums and on the net. 
    I'd like to know from Adobe: are there any compatibility issues with this approach?  There doesn't seem to be any type of compatibility chart listing which video codecs and transport protocols are available on the different mobile platforms.  Since mobile deployment is so heaviliy fragmented, a descriptive chart or table like this would be helpful for those of us developing -- at least for the main mobile platforms predominantly in use.
    Other forum posts similar to this problem:
    http://forums.adobe.com/message/3981541#3981541
    http://forums.adobe.com/message/3954578#3954578
    Thanks in advance!

    I do hope someone from Adobe is "hearing" this, guys. The lack of RTMP-based H.264 video on the Air for iOS is a major problem, indeed.
    As Fabio Sonnati mentioned in http://sonnati.wordpress.com/2011/04/26/air-2-6-for-ios-and-video-play back/, AIR for iOS does support HTTP streaming (via HLS) of h.264 videos. However, when streaming via RTMP, AIR for iOS only supports VP6 and Spark – a couple of old, retired codecs.
    While HTTP streaming (HLS) seems to be a good option for those who simply want to “play a video” in iOS, I do believe it has some severe limitations, especially for live-communications. I’d like to share some of these thoughts with you.
    1. HLS has ridiculously high latency for live videos (around 40 seconds), when compared to RTMP. Although this may not be a problem for on-demand videos, it sure is a great problem for anyone doing serious live-communications applications (such as webconferencing, live webcasting with audience interaction or Skype-like video chats), which require near-zero latency.
    2. Perhaps someone can correct me on this (hopefully!), but as far as I know, HTTP streaming will not allow cuepoints to be read from videos. This is particularly painful for anyone doing video-triggered actions, such as slide changes (for webinar apps), subtitling or live closed captioning, etc. I read somewhere that OSMF player allows cuepoints (or "temporal metadata". See http://blogs.adobe.com/osmf/2009/11/cue_point_support_in_osmf.html), but I haven't been able to test it myself.
    3. Although HLS it is quite compatible with firewalls (since it flows through port 80), RTMP with tunnelling also flows through port 80 or 443, which adds great compatibility, even on very restricted networks. Our experience with very large clients proves that, hands down.
    In other words, HTTP/HLS streaming is Ok. But it simply does *not* fit into every shoe that RTMP does. We do believe that RTMP remains as our best option for live streaming or serious streaming-oriented *apps* (in which things more complex than “mere video playing in a window” actually happen).
    That all said, I do believe we should let Adobe know about this need. The fact that RTMP streaming in AIR for iOS is limited to VP6 and Spark, which are two “dead” codecs, still puts us, Air developers, in a very fragile position in terms of what we can accomplish with video in iOS.
    I’m sure some of you cheered when you heard about Flash Player 11 having h.264 video encoding. This, (plus the echo cancellation feature that came in 10.3) opened great doors for great Unified-Communication applications to be developed for Flash/Air. Now, it’s undeniable that clients want those applications running on tablets, especially the iPad.
    Not being able to use h.264 via RTMP on iOS is certainly a huge step backwards. Anyone shares this same opinion? What do you guys believe to be the best option to let Adobe really know about this need? Is this limitation a simple lack-of-a-feature (which can be fixed by Adobe) or is this some imposed thing by Apple?
    Just one final note: Air for Android does *not* have the same limitation. It does allow RTMP streaming of h.264.
    Thanks for your attention,
    Helder Conde

Maybe you are looking for