Category Archives: WIX

Wix: Custom actions

      No Comments on Wix: Custom actions

Wix code for Calling the Custom Exe’s or System Build-In Exe’s for performing the Action a. Calling CACLS.exe for setting the Permissions <CustomAction Id=”NTPermission” Directory=”TARGETDIR” ExeCommand='”cacls.exe” “[TARGETDIR]*.*” /T /E /G “MyCustomUser:R”‘ Return=”check” />b. Calling CACLS.exe for Removing the Permissions<CustomAction Id=”NTPermissionUninstall” Directory=”TARGETDIR” ExeCommand='”cacls.exe” “[TARGETDIR]*.*” /T /E /R “MyCustomUser”‘ Return=”check” />c. Calling… Read more »

WIX: Create WebSite and Virtual Directory Effective Way

Creating the WebSite using WIX includes some simple issues as we some time cannot expect the QA, UAT and Prod environment Installation and their topology.As we know there is simple way to create WebSite and Virtual Directoy using wix, Extension of this targets creating without any issues irrespective of Website… Read more »

WIX: Multi-String Registry Values to the Registry

Updating the Multi string values in Registry using WIX Code. Below is the component code for Inserting the Multi-String values to the Registry Key <component Id=”updRegistry” Guid=”{XXXXXXXX-XXXX-XXxx-xxxx-xxxxxxxxxxxx}” ><registrykey Action=”createAndRemoveOnUninstall”Id=”InstallRegistryValues”Root=”HKLM”Key=”SoftwareMicrosoftTest”><registryvalue Name=”UserName” Value=”Abcdedfg” Type=”string”></RegistryValue><registryvalue Name=”Silent” Value=”1″ Type=”integer”></RegistryValue><registryvalue Name=”Sources” Value=”AAAA[~]BBBB[~]CCCC” Type=”multiString”></RegistryValue></RegistryKey></Component>