Advertisement
Guest User

Untitled

a guest
Jan 14th, 2011
1,688
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.23 KB | None | 0 0
  1. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
  2.     <Product Id="..." Name="..." ...>
  3.         <Package Id="*" ... />
  4.         <Media Id="1" Cabinet="somestuff.cab" EmbedCab="yes" CompressionLevel="high" />
  5.         <Feature Id="MainProgram" Title="Main progam" Level="1" Absent="disallow">
  6.             <ComponentRef ... />
  7.             <ComponentRef ... />
  8.             <ComponentRef ... />
  9.         </Feature>
  10.         <Feature Id="Samples" Title="Samples" Level="1">
  11.             <ComponentRef Id="Samples" />
  12.         </Feature>
  13.         <Directory Id="TARGETDIR" Name="SourceDir">
  14.             <Directory Id="ProgramFilesFolder">
  15.                 <Directory Id="ProgramFiles" Name="...">
  16.                     <Directory Id="INSTALLDIR" Name="bin">
  17.                                            ...
  18.  
  19.                     </Directory>
  20.                 </Directory>
  21.             </Directory>
  22.             <Directory Id="ProgramMenuFolder" Name="Programs">
  23.                 <Directory Id="ProgramMenuDir" Name="...">
  24.                     <Component Id="ProgramMenuDir" Guid="...">
  25.                         <RemoveFolder Id="ProgramMenuDir" On="uninstall" />
  26.                         <RegistryValue Root="HKCU" Key="Software\[Manufacturer]\[ProductName]" Type="string" Value="" KeyPath="yes" />
  27.                     </Component>
  28.                 </Directory>
  29.             </Directory>
  30.         </Directory>
  31.         <UIRef Id="WixUI_Mondo" />
  32.  
  33.     </Product>
  34. </Wix>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement