Advertisement
Guest User

Sample File

a guest
Jul 18th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.49 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  3.     <Product Id="*" Name="ArkoInstaller" Language="1033" Version="1.0.0.0" Manufacturer="Sarvagya" UpgradeCode="d2d06541-943b-450e-b334-1efd54523927">
  4.         <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
  5.  
  6.         <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
  7.         <MediaTemplate EmbedCab="yes"/>
  8.  
  9.         <Feature Id="ProductFeature" Title="ArkoInstaller" Level="1">
  10.             <ComponentGroupRef Id="ProductComponents" />
  11.       <ComponentGroupRef Id="ProductAccessories"/>
  12.         </Feature>
  13.     </Product>
  14.  
  15.     <Fragment>
  16.         <Directory Id="TARGETDIR" Name="SourceDir">
  17.             <Directory Id="ProgramFilesFolder">
  18.                 <Directory Id="INSTALLFOLDER" Name="ArkoInstaller" />
  19.             </Directory>
  20.       <Directory Id="LocalAppDataFolder"> <!--If used CommonAppDataFolder it works -->
  21.         <Directory Id="PROGRAMLOCALFOLDER" Name="MyInstallerLocalFolder" />
  22.       </Directory>
  23.         </Directory>
  24.     </Fragment>
  25.  
  26.     <Fragment>
  27.         <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
  28.       <Component Id="FirstFile">
  29.         <File Source="D:\Private\flash_Card.pdf" />
  30.       </Component>
  31.         </ComponentGroup>
  32.     </Fragment>
  33.   <Fragment>
  34.     <ComponentGroup Id="ProductAccessories" Directory="PROGRAMLOCALFOLDER">
  35.       <Component Id="SecondFile">
  36.         <File Source="D:\Private\Insurance Claim Form.pdf"/>
  37.       </Component>
  38.     </ComponentGroup>
  39.   </Fragment>
  40. </Wix>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement