I used the "Creating MSIHANDLE" and Closing MSIHANDLE" log messages to work my way through the source code for SchedNetFx. The MSI handles all seem to make sense, from the log I can see that it is reading two records from the NetFxNativeImage table and that's what I have in the table. In the log fragments that follow, I've made some notes after some of the log lines. My notes begin with "--" and they usually indicate where in the source code the handle is being created or closed.
A successful uninstall looks like this: MSI (s) (54!EC) [16:35:48:371]: Closing MSIHANDLE (42) of type 790531 for thread 1516 -- WcaFetchRecord (end of loop) MSI (s) (54!EC) [16:35:48:371]: Creating MSIHANDLE (49) of type 790531 for thread 1516-- WcaProgressMessage Action start 16:35:47: NetFxScheduleNativeImage. MSI (s) (54!EC) [16:35:48:521]: Closing MSIHANDLE (49) of type 790531 for thread 1516 -- WcaProgessMessage MSI (s) (54!EC) [16:35:48:521]: PROPERTY CHANGE: Adding NetFxExecuteNativeImageUninstall property. Its value is 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen.exe uninstall "C:\Program Files\MVPSI\JAMS\Client\JAMSWin.exe"500C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen.exe uninstall "C:\Program Files\MVPSI\JAMS\Client\JAMS.exe"500C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen.exe update /queue500'. MSI (s) (54!EC) [16:35:48:521]: PROPERTY CHANGE: Adding NetFxExecuteNativeImageCommitUninstall property. Its value is 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen.exe uninstall "C:\Program Files\MVPSI\JAMS\Client\JAMSWin.exe"500C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen.exe uninstall "C:\Program Files\MVPSI\JAMS\Client\JAMS.exe"500C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen.exe update /queue500'. MSI (s) (54!EC) [16:35:48:531]: Closing MSIHANDLE (33) of type 790541 for thread 1516 -- WcaFinalize A failed uninstall looks like this: MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (11) of type 790531 for thread 7184 -- WcaFetchRecord (end of loop) MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (18) of type 790531 for thread 7184-- WcaProgressMessage??? MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (18) of type 790531 for thread 7184 -- WcaProgressMessage??? MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (19) of type 790531 for thread 7184 MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (19) of type 790531 for thread 7184 MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (2) of type 790541 for thread 7184 -- WcaFinalize In the successful uninstall, WcaProgressMessage creates an MSIHANDLE, writes the "Action start..." progress message, closes the MSIHANDLE, sets two properties and then calls WcaFinalize. In the failed uninstall, there are two MSIHANDLES created and closed between the end of the NetFxNativeImage loop and the call to WcaFinalize but, can't see how that happens in the source code. One create/close could be a failed call of WcaProgressMessage but, I can't figure out where the second set comes from. My questions are: Is the "Action start 16:35:47: NetFxScheduleNativeImage." log text the result of calling WcaProgressMessage? That would confirm that I'm reading my way through the source code correctly. What situations can cause WcaProgressMessage to fail? Has anyone seen it fail before? Thanks, John Vottero > -----Original Message----- > From: Rob Mensching [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 26, 2008 5:27 PM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] Uninstall fails when > callingNetFxScheduleNativeImage > > Well, neither of those things make sense to me but it all sounds very > suspicious. I'm not really sure what to suggest at this point but to > look for badness on the client machine. GAC gone crazy? > > -----Original Message----- > From: John Vottero [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 26, 2008 13:57 > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] Uninstall fails when > callingNetFxScheduleNativeImage > > > > > This is kinda' strange looking: > > > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSCommands; Installed: > > Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSCommandsSupport; > > Installed: Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSCommandsFormats; > > Installed: Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSCommandsTypes; > > Installed: Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSCommandsHelp; > Installed: > > Local; Request: Absent; Action: Null > > > > The problem is that you're trying to uninstall these Components > (there > > are a few more) but something is telling the Windows Installer to > > ignore that. Do you have a Condition on those Components causing > them > > to get stuck on the machine? This could be the cause of the problem > > (if the NtFXSched action doesn't like NULL action Components). > > Thanks for the pointer but, I don't think it's the answer to my > problem. > Those strange looking components provide our PowerShell support and > there is a condition on them that prevents installation if PowerShell > isn't already installed. The strange thing is that the log line says > "Installed: Local" when they actually are not installed (because > PowerShell wasn't installed). The "Action: Null" makes sense because > no action is needed. > > Also, NetFxSched can deal with "Action: Null" because I recreated this > situation on a test machine and the uninstall worked. I'm still trying > to figure out what's different about the customer's production machine > where the uninstall is failing. > > > > > > > > > -----Original Message----- > > From: John Vottero [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, November 26, 2008 07:54 > > To: General discussion for Windows Installer XML toolset. > > Subject: [WiX-users] Uninstall fails when calling > > NetFxScheduleNativeImage > > > > I've been trying to figure out a problem with an upgrade failing when > > calling the NetFxScheduleNativeImage CA. The failure occurs only on > > one > > server (at a client site). We've narrowed the problem a little, the > > failure happens during the uninstall, we can't even uninstall the > > product. I'm including a verbose log of a failed uninstall, I hope > > someone can see what's going wrong. > > > > As a general question, how do you deal with problems like this? Is > > there a way to tell msiexec to continue after errors? Is the Windows > > Installer Cleanup Utility my only option? I would hate to zap it > with > > the cleanup utility without every knowing what the root problem was. > > > > This is WiX v2.0.4820 > > > > Any help would be appreciated. > > > > Here's the uninstall log: > > > > > > === Verbose logging started: 11/26/2008 9:26:01 Build type: SHIP > > UNICODE 3.01.4000.4042 Calling process: > > E:\WINDOWS\system32\MSIEXEC.EXE > > === > > MSI (c) (B0:80) [09:26:01:748]: Resetting cached policy values > > MSI (c) (B0:80) [09:26:01:748]: Machine policy value 'Debug' is 0 > > MSI (c) (B0:80) [09:26:01:748]: ******* RunEngine: > > ******* Product: {26277F5D-6ED3-48BA-8E3C-D096E7A32306} > > ******* Action: > > ******* CommandLine: ********** > > MSI (c) (B0:80) [09:26:01:748]: Client-side and UI is none or basic: > > Running entire install on the server. > > MSI (c) (B0:80) [09:26:01:748]: Grabbed execution mutex. > > MSI (c) (B0:80) [09:26:01:779]: Cloaking enabled. > > MSI (c) (B0:80) [09:26:01:779]: Attempting to enable all disabled > > priveleges before calling Install on Server > > MSI (c) (B0:80) [09:26:01:779]: Incrementing counter to disable > > shutdown. Counter after increment: 0 > > MSI (s) (A0:AC) [09:26:01:795]: Grabbed execution mutex. > > MSI (s) (A0:C8) [09:26:01:795]: Resetting cached policy values > > MSI (s) (A0:C8) [09:26:01:795]: Machine policy value 'Debug' is 0 > > MSI (s) (A0:C8) [09:26:01:795]: ******* RunEngine: > > ******* Product: {26277F5D-6ED3-48BA-8E3C-D096E7A32306} > > ******* Action: > > ******* CommandLine: ********** > > MSI (s) (A0:C8) [09:26:01:795]: Machine policy value > > 'DisableUserInstalls' is 0 > > MSI (s) (A0:C8) [09:26:01:795]: Setting cached product context: > machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: End dialog not enabled > > MSI (s) (A0:C8) [09:26:01:795]: Original package ==> > > C:\WINDOWS\Installer\2ae1ad69.msi > > MSI (s) (A0:C8) [09:26:01:795]: Package we're running from ==> > > C:\WINDOWS\Installer\2ae1ad69.msi > > MSI (s) (A0:C8) [09:26:01:795]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: APPCOMPAT: looking for appcompat > > database entry with ProductCode > > '{26277F5D-6ED3-48BA-8E3C-D096E7A32306}'. > > MSI (s) (A0:C8) [09:26:01:795]: APPCOMPAT: no matching ProductCode > > found > > in database. > > MSI (s) (A0:C8) [09:26:01:795]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:795]: MSCOREE not loaded loading copy from > > system32 > > MSI (s) (A0:C8) [09:26:01:811]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:811]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:811]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:811]: Machine policy value 'DisablePatch' > is > > 0 > > MSI (s) (A0:C8) [09:26:01:811]: Machine policy value > > 'AllowLockdownPatch' is 0 > > MSI (s) (A0:C8) [09:26:01:811]: Machine policy value > > 'DisableLUAPatching' is 0 > > MSI (s) (A0:C8) [09:26:01:811]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:811]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:811]: Machine policy value > > 'DisableFlyWeightPatching' is 0 > > MSI (s) (A0:C8) [09:26:01:811]: 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) (A0:C8) [09:26:01:811]: APPCOMPAT: looking for appcompat > > database entry with ProductCode > > '{26277F5D-6ED3-48BA-8E3C-D096E7A32306}'. > > MSI (s) (A0:C8) [09:26:01:811]: APPCOMPAT: no matching ProductCode > > found > > in database. > > MSI (s) (A0:C8) [09:26:01:811]: Transforms are not secure. > > MSI (s) (A0:C8) [09:26:01:811]: Command Line: REMOVE=ALL > > CURRENTDIRECTORY=C:\ CLIENTUILEVEL=2 CLIENTPROCESSID=5040 > > MSI (s) (A0:C8) [09:26:01:811]: PROPERTY CHANGE: Adding PackageCode > > property. Its value is '{A8B1D377-9CAA-0403-03BC-64D0B772FBED}'. > > MSI (s) (A0:C8) [09:26:01:811]: Product Code passed to > > Engine.Initialize: '{26277F5D-6ED3-48BA-8E3C-D096E7A32306}' > > MSI (s) (A0:C8) [09:26:01:811]: Product Code from property table > before > > transforms: '{26277F5D-6ED3-48BA-8E3C-D096E7A32306}' > > MSI (s) (A0:C8) [09:26:01:811]: Product Code from property table > after > > transforms: '{26277F5D-6ED3-48BA-8E3C-D096E7A32306}' > > MSI (s) (A0:C8) [09:26:01:811]: Product registered: entering > > maintenance > > mode > > MSI (s) (A0:C8) [09:26:01:811]: PROPERTY CHANGE: Adding ProductState > > property. Its value is '5'. > > MSI (s) (A0:C8) [09:26:01:811]: PROPERTY CHANGE: Adding > > ProductToBeRegistered property. Its value is '1'. > > MSI (s) (A0:C8) [09:26:01:811]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:811]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:811]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:811]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:811]: Package name retrieved from > > configuration data: 'SetupClientx64.msi' > > MSI (s) (A0:C8) [09:26:01:811]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:811]: Determined that existing product > > (either > > this product or the product being upgraded with a patch) is installed > > per-machine. > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2205 2: 3: Error > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2729 > > MSI (s) (A0:C8) [09:26:01:811]: Note: 1: 2262 2: AdminProperties 3: > > -2147287038 > > MSI (s) (A0:C8) [09:26:01:811]: Machine policy value 'DisableMsi' is > 1 > > MSI (s) (A0:C8) [09:26:01:811]: Machine policy value > > 'AlwaysInstallElevated' is 0 > > MSI (s) (A0:C8) [09:26:01:811]: User policy value > > 'AlwaysInstallElevated' is 0 > > MSI (s) (A0:C8) [09:26:01:811]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:811]: Product > > {26277F5D-6ED3-48BA-8E3C-D096E7A32306} is admin assigned: LocalSystem > > owns the publish key. > > MSI (s) (A0:C8) [09:26:01:811]: Product > > {26277F5D-6ED3-48BA-8E3C-D096E7A32306} is managed. > > MSI (s) (A0:C8) [09:26:01:811]: Running product > > '{26277F5D-6ED3-48BA-8E3C-D096E7A32306}' with elevated privileges: > > Product is assigned. > > MSI (s) (A0:C8) [09:26:01:811]: PROPERTY CHANGE: Adding REMOVE > > property. > > Its value is 'ALL'. > > MSI (s) (A0:C8) [09:26:01:811]: PROPERTY CHANGE: Adding > > CURRENTDIRECTORY > > property. Its value is 'C:\'. > > MSI (s) (A0:C8) [09:26:01:811]: PROPERTY CHANGE: Adding CLIENTUILEVEL > > property. Its value is '2'. > > MSI (s) (A0:C8) [09:26:01:811]: PROPERTY CHANGE: Adding > CLIENTPROCESSID > > property. Its value is '5040'. > > MSI (s) (A0:C8) [09:26:01:811]: TRANSFORMS property is now: > > MSI (s) (A0:C8) [09:26:01:811]: PROPERTY CHANGE: Adding > PRODUCTLANGUAGE > > property. Its value is '1033'. > > MSI (s) (A0:C8) [09:26:01:811]: PROPERTY CHANGE: Adding > VersionDatabase > > property. Its value is '200'. > > MSI (s) (A0:C8) [09:26:01:811]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\Application Data > > MSI (s) (A0:C8) [09:26:01:811]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\Favorites > > MSI (s) (A0:C8) [09:26:01:811]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\NetHood > > MSI (s) (A0:C8) [09:26:01:811]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\My Documents > > MSI (s) (A0:C8) [09:26:01:811]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\PrintHood > > MSI (s) (A0:C8) [09:26:01:811]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\Recent > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\SendTo > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\Templates > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\All Users\Application Data > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\Local > Settings\Application > > Data > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\My Documents\My Pictures > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\All Users\Start > Menu\Programs\Administrative > > Tools > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\All Users\Start Menu\Programs\Startup > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\All Users\Start Menu\Programs > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\All Users\Start Menu > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\All Users\Desktop > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\Start > > Menu\Programs\Administrative Tools > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\Start > > Menu\Programs\Startup > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\Start Menu\Programs > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\Start Menu > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\cpratt.LIGHTHOUSE1\Desktop > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\Documents and Settings\All Users\Templates > > MSI (s) (A0:C8) [09:26:01:826]: SHELL32::SHGetFolderPath returned: > > E:\WINDOWS\Fonts > > MSI (s) (A0:C8) [09:26:01:826]: Note: 1: 2898 2: MS Sans Serif 3: MS > > Sans Serif 4: 0 5: 16 > > MSI (s) (A0:C8) [09:26:01:826]: PROPERTY CHANGE: Adding Privileged > > property. Its value is '1'. > > MSI (s) (A0:C8) [09:26:01:826]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:826]: Note: 1: 1402 2: > > HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 > > MSI (s) (A0:C8) [09:26:01:826]: PROPERTY CHANGE: Adding USERNAME > > property. Its value is 'Rackspace Managed Hosting'. > > MSI (s) (A0:C8) [09:26:01:826]: Note: 1: 1402 2: > > HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 > > MSI (s) (A0:C8) [09:26:01:826]: PROPERTY CHANGE: Adding COMPANYNAME > > property. Its value is 'Rackspace Managed Hosting'. > > MSI (s) (A0:C8) [09:26:01:826]: PROPERTY CHANGE: Adding Installed > > property. Its value is '00:00:00'. > > MSI (s) (A0:C8) [09:26:01:826]: PROPERTY CHANGE: Adding DATABASE > > property. Its value is 'C:\WINDOWS\Installer\2ae1ad69.msi'. > > MSI (s) (A0:C8) [09:26:01:826]: PROPERTY CHANGE: Adding > > OriginalDatabase > > property. Its value is 'C:\WINDOWS\Installer\2ae1ad69.msi'. > > MSI (s) (A0:C8) [09:26:01:826]: Note: 1: 2205 2: 3: PatchPackage > > MSI (s) (A0:C8) [09:26:01:826]: Machine policy value > 'DisableRollback' > > is 0 > > MSI (s) (A0:C8) [09:26:01:826]: User policy value 'DisableRollback' > is > > 0 > > MSI (s) (A0:C8) [09:26:01:826]: PROPERTY CHANGE: Adding UILevel > > property. Its value is '3'. > > MSI (s) (A0:C8) [09:26:01:826]: PROPERTY CHANGE: Adding Preselected > > property. Its value is '1'. > > MSI (s) (A0:C8) [09:26:01:826]: PROPERTY CHANGE: Adding ACTION > > property. > > Its value is 'INSTALL'. > > MSI (s) (A0:C8) [09:26:01:826]: Doing action: INSTALL > > MSI (s) (A0:C8) [09:26:01:826]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:826]: Running ExecuteSequence > > MSI (s) (A0:C8) [09:26:01:826]: Doing action: AppSearch > > MSI (s) (A0:C8) [09:26:01:826]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:826]: Note: 1: 1402 2: > > HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1 3: 2 > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Adding MINFRAMEWORK > > property. Its value is 'E:\WINDOWS\SysWOW64\mscoree.dll'. > > MSI (s) (A0:C8) [09:26:01:842]: Skipping action: LaunchConditions > > (condition is false) > > MSI (s) (A0:C8) [09:26:01:842]: Doing action: FindRelatedProducts > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:842]: Skipping FindRelatedProducts action: > > not > > run in maintenance mode > > MSI (s) (A0:C8) [09:26:01:842]: Doing action: ValidateProductID > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:842]: Doing action: CostInitialize > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:842]: Machine policy value > > 'MaxPatchCacheSize' > > is 10 > > MSI (s) (A0:C8) [09:26:01:842]: Baseline: Sorting baselines for > > {26277F5D-6ED3-48BA-8E3C-D096E7A32306}. > > MSI (s) (A0:C8) [09:26:01:842]: Baseline: New baseline 4.3.956 from > > transaction. > > MSI (s) (A0:C8) [09:26:01:842]: Baseline: Sorted order Native: Order > 0. > > MSI (s) (A0:C8) [09:26:01:842]: Baseline Data Table: > > MSI (s) (A0:C8) [09:26:01:842]: ProductCode: > > {26277F5D-6ED3-48BA-8E3C-D096E7A32306} Version: 4.3.956 Attributes: 0 > > PatchId: Native BaselineId: -2147483648 Order: 0 > > MSI (s) (A0:C8) [09:26:01:842]: Baseline File Table: > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Adding ROOTDRIVE > > property. Its value is 'E:\'. > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Adding > CostingComplete > > property. Its value is '0'. > > MSI (s) (A0:C8) [09:26:01:842]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: Patch > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: PatchPackage > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: MsiPatchHeaders > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: > __MsiPatchFileList > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: PatchPackage > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2228 2: 3: PatchPackage 4: > > SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, > `PatchPackage` > > WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId` > > MSI (s) (A0:C8) [09:26:01:842]: Delta compression fallback method for > > this product transaction is 'MSI 2.0 legacy obsolescence' > > MSI (s) (A0:C8) [09:26:01:842]: Doing action: FileCost > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: Class > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: Extension > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: TypeLib > > MSI (s) (A0:C8) [09:26:01:842]: Doing action: DIRCA_TARGETDIR > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Adding TARGETDIR > > property. Its value is 'C:\Program Files\MVPSI\JAMS'. > > MSI (s) (A0:C8) [09:26:01:842]: Doing action: CostFinalize > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Adding > OutOfDiskSpace > > property. Its value is '0'. > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Adding > > OutOfNoRbDiskSpace property. Its value is '0'. > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Adding > > PrimaryVolumeSpaceAvailable property. Its value is '0'. > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Adding > > PrimaryVolumeSpaceRequired property. Its value is '0'. > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Adding > > PrimaryVolumeSpaceRemaining property. Its value is '0'. > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Adding ClientDir > > property. Its value is 'C:\Program Files\MVPSI\JAMS\Client'. > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: Patch > > MSI (s) (A0:C8) [09:26:01:842]: Note: 1: 2205 2: 3: Condition > > MSI (s) (A0:C8) [09:26:01:842]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:842]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:842]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Modifying TARGETDIR > > property. Its current value is 'C:\Program Files\MVPSI\JAMS'. Its new > > value: 'C:\Program Files\MVPSI\JAMS\'. > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Adding CommonDir > > property. Its value is 'C:\Program Files\MVPSI\JAMS\Common\'. > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Modifying ClientDir > > property. Its current value is 'C:\Program Files\MVPSI\JAMS\Client'. > > Its > > new value: 'C:\Program Files\MVPSI\JAMS\Client\'. > > MSI (s) (A0:C8) [09:26:01:842]: Target path resolution complete. > > Dumping > > Directory table... > > MSI (s) (A0:C8) [09:26:01:842]: Note: target paths subject to change > > (via custom actions or browsing) > > MSI (s) (A0:C8) [09:26:01:842]: Dir (target): Key: TARGETDIR , > > Object: C:\Program Files\MVPSI\JAMS\ > > MSI (s) (A0:C8) [09:26:01:842]: Dir (target): Key: WindowsFolder > > , Object: E:\WINDOWS\ > > MSI (s) (A0:C8) [09:26:01:842]: Dir (target): Key: CommonDir , > > Object: C:\Program Files\MVPSI\JAMS\Common\ > > MSI (s) (A0:C8) [09:26:01:842]: Dir (target): Key: ClientDir , > > Object: C:\Program Files\MVPSI\JAMS\Client\ > > MSI (s) (A0:C8) [09:26:01:842]: Dir (target): Key: ProgramMenuFolder > > , Object: E:\Documents and Settings\All Users\Start Menu\Programs\ > > MSI (s) (A0:C8) [09:26:01:842]: PROPERTY CHANGE: Adding INSTALLLEVEL > > property. Its value is '1'. > > MSI (s) (A0:C8) [09:26:01:858]: Doing action: MigrateFeatureStates > > MSI (s) (A0:C8) [09:26:01:858]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:858]: Skipping MigrateFeatureStates action: > > not run in maintenance mode > > MSI (s) (A0:C8) [09:26:01:858]: Doing action: InstallValidate > > MSI (s) (A0:C8) [09:26:01:858]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:858]: Feature: DefaultFeature; Installed: > > Local; Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSWin; Installed: Local; > > Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMS; Installed: Local; > > Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: UserConfig; Installed: > > Local; > > Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSShr; Installed: Local; > > Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: SyncfusionEdit; Installed: > > Local; Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: GenuineChannels; > Installed: > > Local; Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSCommands; Installed: > > Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSCommandsSupport; > > Installed: Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSCommandsFormats; > > Installed: Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSCommandsTypes; > > Installed: > > Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSCommandsHelp; > Installed: > > Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSShrCommon; Installed: > > Local; Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: GenuineChannelsCommon; > > Installed: Local; Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSWinShortcut; > Installed: > > Local; Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSSnapIn; Installed: > > Local; > > Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSSnapInApplicationBase; > > Installed: Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSSnapInAssemblyName; > > Installed: Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSSnapInDescription; > > Installed: Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: > > JAMSSnapInDescriptionIndirect; Installed: Local; Request: Absent; > > Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSSnapInFormats; > > Installed: > > Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSSnapInModuleName; > > Installed: Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: > JAMSSnapInPowerShellVersion; > > Installed: Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSSnapInTypes; > Installed: > > Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSSnapInVendor; > Installed: > > Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSSnapInVendorIndirect; > > Installed: Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: JAMSSnapInVersion; > > Installed: > > Local; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: __JAMSShrCommon65; > > Installed: > > Null; Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: __GenuineChannelsCommon65; > > Installed: Null; Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: __JAMSWinShortcut65; > > Installed: Null; Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Component: __JAMSSnapIn65; Installed: > > Null; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: > > __JAMSSnapInApplicationBase65; Installed: Null; Request: Absent; > > Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: > __JAMSSnapInAssemblyName65; > > Installed: Null; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: __JAMSSnapInDescription65; > > Installed: Null; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: > > __JAMSSnapInDescriptionIndirect65; Installed: Null; Request: > Absent; > > Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: __JAMSSnapInFormats65; > > Installed: Null; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: __JAMSSnapInModuleName65; > > Installed: Null; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: > > __JAMSSnapInPowerShellVersion65; Installed: Null; Request: Absent; > > Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: __JAMSSnapInTypes65; > > Installed: Null; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: __JAMSSnapInVendor65; > > Installed: Null; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: > > __JAMSSnapInVendorIndirect65; > > Installed: Null; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: __JAMSSnapInVersion65; > > Installed: Null; Request: Absent; Action: Null > > MSI (s) (A0:C8) [09:26:01:858]: Component: __JAMSWinShortcut66; > > Installed: Null; Request: Absent; Action: Absent > > MSI (s) (A0:C8) [09:26:01:858]: Note: 1: 2205 2: 3: BindImage > > MSI (s) (A0:C8) [09:26:01:858]: Note: 1: 2205 2: 3: ProgId > > MSI (s) (A0:C8) [09:26:01:858]: Note: 1: 2205 2: 3: PublishComponent > > MSI (s) (A0:C8) [09:26:01:858]: Note: 1: 2205 2: 3: SelfReg > > MSI (s) (A0:C8) [09:26:01:858]: Note: 1: 2205 2: 3: Extension > > MSI (s) (A0:C8) [09:26:01:858]: Note: 1: 2205 2: 3: Font > > MSI (s) (A0:C8) [09:26:01:858]: Note: 1: 2205 2: 3: Class > > MSI (s) (A0:C8) [09:26:01:858]: Note: 1: 2205 2: 3: _RemoveFilePath > > MSI (s) (A0:C8) [09:26:01:889]: PROPERTY CHANGE: Modifying > > CostingComplete property. Its current value is '0'. Its new value: > '1'. > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2205 2: 3: BindImage > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2205 2: 3: ProgId > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2205 2: 3: PublishComponent > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2205 2: 3: SelfReg > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2205 2: 3: Extension > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2205 2: 3: Font > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2205 2: 3: Class > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2727 2: > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2727 2: > > MSI (s) (A0:C8) [09:26:01:889]: Doing action: SAVETARGETDIR > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:889]: PROPERTY CHANGE: Adding > > ARPINSTALLLOCATION property. Its value is 'C:\Program > > Files\MVPSI\JAMS\'. > > MSI (s) (A0:C8) [09:26:01:889]: Doing action: InstallInitialize > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:889]: Machine policy value > > 'AlwaysInstallElevated' is 0 > > MSI (s) (A0:C8) [09:26:01:889]: User policy value > > 'AlwaysInstallElevated' is 0 > > MSI (s) (A0:C8) [09:26:01:889]: BeginTransaction: Locking Server > > MSI (s) (A0:C8) [09:26:01:889]: Machine policy value > > 'LimitSystemRestoreCheckpointing' is 0 > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 1717 2: JAMS Client V4.3.956 > > X64 > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2205 2: 3: Error > > MSI (s) (A0:C8) [09:26:01:889]: Note: 1: 2228 2: 3: Error 4: SELECT > > `Message` FROM `Error` WHERE `Error` = 1717 > > MSI (s) (A0:C8) [09:26:01:889]: Calling SRSetRestorePoint API. > > dwRestorePtType: 1, dwEventType: 102, llSequenceNumber: 0, > > szDescription: "Removed JAMS Client V4.3.956 X64". > > MSI (s) (A0:C8) [09:26:01:889]: The call to SRSetRestorePoint API > > failed. Returned status: 0. GetLastError() returned: 127 > > MSI (s) (A0:C8) [09:26:01:889]: Server not locked: locking for > product > > {26277F5D-6ED3-48BA-8E3C-D096E7A32306} > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:920]: PROPERTY CHANGE: Deleting > > ProductToBeRegistered property. Its current value is '1'. > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2205 2: 3: Class > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2228 2: 3: Class 4: SELECT > > `CLSID` FROM `Class` WHERE `Icon_`=? AND `Class`.`Attributes`=1 > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2205 2: 3: Class > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2228 2: 3: Class 4: SELECT > > `Component`,`CLSID` FROM `Component`,`Class` WHERE > > `Component`=`Component_` AND `Icon_`=? AND (`Component`.`Installed` > <> > > 0 AND `Component`.`Action` <> 0) > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2205 2: 3: Extension > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2228 2: 3: Extension 4: > > SELECT > > `Component`,`Extension` FROM `Component`,`Extension`,`ProgId` WHERE > > `Component`.`Component`=`Extension`.`Component_` AND > > `ProgId`.`ProgId`=`Extension`.`ProgId_` AND `ProgId`.`Icon_`=? AND > > (`Component`.`Installed` <> 0 AND `Component`.`Action` <> 0) > > MSI (s) (A0:C8) [09:26:01:920]: 'JAMSIcon.exe' icon will be removed. > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Doing action: RemoveExistingProducts > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:920]: Skipping RemoveExistingProducts > action: > > current configuration is maintenance mode or an uninstall > > MSI (s) (A0:C8) [09:26:01:920]: Doing action: ProcessComponents > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:920]: Doing action: MsiUnpublishAssemblies > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Doing action: UnpublishFeatures > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:920]: Using cached product context: machine > > assigned for product: D5F772623DE6AB84E8C30D697E3A3260 > > MSI (s) (A0:C8) [09:26:01:920]: Doing action: RemoveRegistryValues > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:920]: Doing action: RemoveShortcuts > > MSI (s) (A0:C8) [09:26:01:920]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:936]: Doing action: RemoveFiles > > MSI (s) (A0:C8) [09:26:01:936]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:936]: Note: 1: 2205 2: 3: RemoveFile > > MSI (s) (A0:C8) [09:26:01:936]: Note: 1: 2205 2: 3: RemoveFile > > MSI (s) (A0:C8) [09:26:01:936]: Doing action: > NetFxScheduleNativeImage > > MSI (s) (A0:C8) [09:26:01:936]: Note: 1: 2205 2: 3: ActionText > > MSI (s) (A0:C8) [09:26:01:936]: Creating MSIHANDLE (1) of type 790542 > > for thread 4808 > > MSI (s) (A0:F0) [09:26:01:936]: Invoking remote custom action. DLL: > > E:\WINDOWS\Installer\MSI4403.tmp, Entrypoint: SchedNetFx > > MSI (s) (A0:1C) [09:26:01:936]: Generating random cookie. > > MSI (s) (A0:1C) [09:26:01:936]: Created Custom Action Server with PID > > 7456 (0x1D20). > > MSI (s) (A0:68) [09:26:01:967]: Running as a service. > > MSI (s) (A0:68) [09:26:01:967]: Hello, I'm your 32bit Impersonated > > custom action server. > > MSI (s) (A0!10) [09:26:01:967]: Creating MSIHANDLE (2) of type 790541 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:967]: Creating MSIHANDLE (3) of type 790540 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:967]: Creating MSIHANDLE (4) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (5) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (5) of type 790531 > > for > > thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (6) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Note: 1: 2715 2: > > MSI (s) (A0!10) [09:26:01:983]: Note: 1: 2715 2: > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (6) of type 790531 > > for > > thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (7) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (7) of type 790531 > > for > > thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (8) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (8) of type 790531 > > for > > thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (9) of type 790540 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (10) of type > 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (4) of type 790531 > > for > > thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (11) of type > 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (12) of type > 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (12) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (13) of type > 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Note: 1: 2715 2: > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (13) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (14) of type > 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (14) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (15) of type > 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (15) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (9) of type 790540 > > for > > thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (16) of type > 790540 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (10) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (17) of type > 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (11) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (18) of type > 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (18) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Creating MSIHANDLE (19) of type > 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (19) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (2) of type 790541 > > for > > thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (17) of type 790531 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (16) of type 790540 > > for thread 7184 > > MSI (s) (A0!10) [09:26:01:983]: Closing MSIHANDLE (3) of type 790540 > > for > > thread 7184 > > MSI (s) (A0:F0) [09:26:01:983]: Closing MSIHANDLE (1) of type 790542 > > for > > thread 4808 > > MSI (s) (A0:C8) [09:26:01:983]: Machine policy value > 'DisableRollback' > > is 0 > > MSI (s) (A0:C8) [09:26:01:983]: Note: 1: 1402 2: > > > HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\ > > R > > ollback\Scripts 3: 2 > > MSI (s) (A0:C8) [09:26:01:983]: Note: 1: 1402 2: > > > HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\ > > R > > ollback\Scripts 3: 2 > > MSI (s) (A0:C8) [09:26:01:983]: No System Restore sequence number for > > this installation. > > MSI (s) (A0:C8) [09:26:01:983]: Unlocking Server > > MSI (s) (A0:C8) [09:26:01:998]: Note: 1: 1725 > > MSI (s) (A0:C8) [09:26:01:998]: Note: 1: 2205 2: 3: Error > > MSI (s) (A0:C8) [09:26:01:998]: Note: 1: 2228 2: 3: Error 4: SELECT > > `Message` FROM `Error` WHERE `Error` = 1725 > > MSI (s) (A0:C8) [09:26:01:998]: Note: 1: 2205 2: 3: Error > > MSI (s) (A0:C8) [09:26:01:998]: Note: 1: 2228 2: 3: Error 4: SELECT > > `Message` FROM `Error` WHERE `Error` = 1709 > > MSI (s) (A0:C8) [09:26:01:998]: Product: JAMS Client V4.3.956 X64 -- > > Removal failed. > > > > MSI (s) (A0:C8) [09:26:01:998]: Cleaning up uninstalled install > > packages, if any exist > > MSI (s) (A0:C8) [09:26:01:998]: MainEngineThread is returning 1603 > > MSI (s) (A0:AC) [09:26:01:998]: Destroying RemoteAPI object. > > MSI (s) (A0:1C) [09:26:01:998]: Custom Action Manager thread ending. > > MSI (c) (B0:80) [09:26:01:998]: Decrementing counter to disable > > shutdown. If counter >= 0, shutdown will be denied. Counter after > > decrement: -1 > > MSI (c) (B0:80) [09:26:01:998]: MainEngineThread is returning 1603 > > === Verbose logging stopped: 11/26/2008 9:26:01 === > > > > > > > ----------------------------------------------------------------------- > > -- > > This SF.Net email is sponsored by the Moblin Your Move Developer's > > challenge > > Build the coolest Linux based applications with Moblin SDK & win > great > > prizes > > Grand prize is a trip for two to an Open Source event anywhere in the > > world > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > _______________________________________________ > > WiX-users mailing list > > WiX-users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/wix-users > > > > > > > ----------------------------------------------------------------------- > > -- > > This SF.Net email is sponsored by the Moblin Your Move Developer's > > challenge > > Build the coolest Linux based applications with Moblin SDK & win > great > > prizes > > Grand prize is a trip for two to an Open Source event anywhere in the > > world > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > _______________________________________________ > > WiX-users mailing list > > WiX-users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/wix-users > > > ----------------------------------------------------------------------- > -- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the > world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > WiX-users mailing list > WiX-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wix-users > > > ----------------------------------------------------------------------- > -- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the > world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > WiX-users mailing list > WiX-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users