Guest User

Untitled

a guest
Nov 15th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. MSI (s) (0C:9C) [15:21:35:083]: Component: CM_CP_runtime.bin.main2.exe;
  2. Installed: Absent; Request: Null; Action: Null
  3. ...
  4. MSI (s) (0C:78) [15:21:43:591]: Executing op: FileCopy(SourceName=-dbqfin2.dll|FreeImage.dll,SourceCabKey=CM_FP_runtime.bin.FreeImage.dll,DestName=FreeImage.dll,Attributes=512,FileSize=6201856,PerTick=65536,,VerifyMedia=1,,,,,CheckCRC=0,Version=3.17.0.0,Language=1033,InstallMode=58982400,,,,,,,)
  5. MSI (s) (0C:78) [15:21:43:591]: File: C:Program FilesLDS StudiobinFreeImage.dll; To be installed; Won't patch; No existing file
  6.  
  7. <Product Id="$(var.CPACK_WIX_PRODUCT_GUID)"
  8. Name="$(var.CPACK_PACKAGE_NAME)"
  9. Language="1033"
  10. Version="$(var.CPACK_PACKAGE_VERSION)"
  11. Manufacturer="$(var.CPACK_PACKAGE_VENDOR)"
  12. UpgradeCode="$(var.CPACK_WIX_UPGRADE_GUID)">
  13.  
  14. <Package InstallerVersion="301" Compressed="yes" InstallScope="perMachine"/>
  15.  
  16. <Media Id="1" Cabinet="media1.cab" EmbedCab="yes"/>
  17.  
  18. <Property Id="PREVIOUSVERSIONSINSTALLED" Secure="yes" />
  19. <Upgrade Id="$(var.CPACK_WIX_UPGRADE_GUID)">
  20. <UpgradeVersion
  21. Minimum="1.0.0.0" Maximum="99.0.0.0"
  22. Property="PREVIOUSVERSIONSINSTALLED"
  23. IncludeMinimum="yes" IncludeMaximum="no"
  24. />
  25. </Upgrade>
  26.  
  27. <WixVariable Id="WixUILicenseRtf" Value="$(var.CPACK_WIX_LICENSE_RTF)"/>
  28. <Property Id="WIXUI_INSTALLDIR" Value="INSTALL_ROOT"/>
  29.  
  30. <?ifdef CPACK_WIX_PRODUCT_ICON?>
  31. <Property Id="ARPPRODUCTICON">ProductIcon.ico</Property>
  32. <Icon Id="ProductIcon.ico" SourceFile="$(var.CPACK_WIX_PRODUCT_ICON)"/>
  33. <?endif?>
  34.  
  35. <?ifdef CPACK_WIX_UI_BANNER?>
  36. <WixVariable Id="WixUIBannerBmp" Value="$(var.CPACK_WIX_UI_BANNER)"/>
  37. <?endif?>
  38.  
  39. <?ifdef CPACK_WIX_UI_DIALOG?>
  40. <WixVariable Id="WixUIDialogBmp" Value="$(var.CPACK_WIX_UI_DIALOG)"/>
  41. <?endif?>
  42.  
  43. <FeatureRef Id="ProductFeature"/>
  44.  
  45. <UIRef Id="$(var.CPACK_WIX_UI_REF)" />
  46.  
  47. <?include "properties.wxi"?>
  48. <?include "product_fragment.wxi"?>
  49.  
  50. <CustomAction Id="RegisterExtensions"
  51. FileKey="CM_FP_runtime.bin.main.exe"
  52. ExeCommand="-regext"
  53. Execute="deferred"
  54. Return="check"
  55. HideTarget="no"
  56. Impersonate="no"
  57. />
  58. <CustomAction Id="UnregisterExtensions"
  59. FileKey="CM_FP_runtime.bin.main.exe"
  60. ExeCommand="-unregext"
  61. Execute="deferred"
  62. Return="ignore"
  63. HideTarget="no"
  64. Impersonate="no"
  65. />
  66.  
  67. <InstallExecuteSequence>
  68. <RemoveExistingProducts Before='InstallInitialize'>
  69. NOT REMOVE
  70. </RemoveExistingProducts>
  71. <Custom Action="RegisterExtensions" After="InstallFiles">
  72. NOT REMOVE
  73. </Custom>
  74. <Custom Action="UnregisterExtensions" After="InstallInitialize">
  75. Installed AND (REMOVE = "ALL")
  76. </Custom>
  77. </InstallExecuteSequence>
  78. </Product>
  79.  
  80. <RemoveExistingProducts Before='InstallInitialize'>
  81. NOT REMOVE
  82. </RemoveExistingProducts>
  83.  
  84. <RemoveExistingProducts After='InstallInitialize'>
  85. NOT REMOVE
  86. </RemoveExistingProducts>
Add Comment
Please, Sign In to add comment