Advertisement
Guest User

My Installer Demo 1

a guest
Apr 30th, 2014
432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.22 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="7053032F-5BEB-4DDC-8285-732236C39645" Name="TestProduct" Language="1033" Version="1.0.0.1" Manufacturer="WixEdit" UpgradeCode="7F4A46B0-A6E7-4EEA-8655-235BCA4AB2C4">
  4.         <Package Description="Test file in a Product" Comments="Simple test" InstallerVersion="200" Compressed="yes" />
  5.         <Media Id="1" Cabinet="simple.cab" EmbedCab="yes" />
  6.         <Directory Id="TARGETDIR" Name="SourceDir">
  7.             <Directory Id="ProgramFilesFolder" Name="PFiles">
  8.                 <Directory Id="TESTPKG" Name="TestPKG">
  9.                     <Component Id="MEMHIS_PHASE_2_TESTING_RESULTS.DOCX" DiskId="1" Guid="D39E8C20-F0A8-420B-B023-B619889C9EEE">
  10.                         <File Id="MEMHIS_PHASE_2_TESTING_RESULTS.DOCX" Name="Memhis Phase 2 Testing results.docx" Source="D:\TestPKG\Memhis Phase 2 Testing results.docx" />
  11.                     </Component>
  12.                     <Component Id="NEW_TEXT_DOCUMENT.TXT" DiskId="1" Guid="178B34EC-684E-4202-977F-372748CBD579">
  13.                         <File Id="NEW_TEXT_DOCUMENT.TXT" Name="New Text Document.txt" Source="D:\TestPKG\New Text Document.txt">
  14.                             <Shortcut Id="desktopShortcut" Directory="DesktopFolder" Name="New Text Doc" WorkingDirectory="INSTALLDIR" Advertise="no" Icon="DesktopIcon.exe" IconIndex="0" />
  15.                             <Shortcut Id="ExeShortcut" Directory="ProgramMenuDir" Name="New Text Doc" Advertise="no" Icon="StartMenuIcon.exe" IconIndex="0" />
  16.                         </File>
  17.                     </Component>
  18.                     <Directory Id="TESTDIR" Name="TestDir">
  19.                         <Component Id="IMAGES.JPG" DiskId="1" Guid="30BD1E10-2CAA-4233-863C-3E649A057D6C">
  20.                             <File Id="IMAGES.JPG" Name="images.jpg" Source="D:\TestPKG\TestDir\images.jpg" />
  21.                         </Component>
  22.                         <Component Id="PROXY.TXT" DiskId="1" Guid="ABFCB4BC-3932-4CE5-AA58-D4B14E69FF40">
  23.                             <File Id="PROXY.TXT" Name="proxy.txt" Source="D:\TestPKG\TestDir\proxy.txt" />
  24.                         </Component>
  25.                     </Directory>
  26.                 </Directory>
  27.             </Directory>
  28.             <Directory Id="DesktopFolder" />
  29.             <Directory Id="ProgramMenuFolder">
  30.                 <Directory Id="ProgramMenuDir" Name="New Text Doc">
  31.                     <Component Id="StartMenuShortcuts" Guid="14F8572B-47A3-4B4A-AE5D-F30CC17AB214">
  32.                         <RemoveFolder Id="ProgramMenuDir" On="uninstall" />
  33.                         <RegistryValue Root="HKCU" Key="Software\[Manufacturer]\[ProductName]" Type="string" Value="" />
  34.                         <Shortcut Id="UninstallProduct" Name="Uninstall" Description="Uninstalls the application" Target="[System64Folder]msiexec.exe" Arguments="/x [ProductCode]" />
  35.                     </Component>
  36.                 </Directory>
  37.             </Directory>
  38.         </Directory>
  39.         <!-- Desktop Menu -->
  40.         <DirectoryRef Id="DesktopFolder">
  41.           <Component Id="FooDesktopShortcutMenu" Guid="D4D0A2ED-C0DB-4524-AC53-D30F904DB846">
  42.             <Shortcut Id="FooApplicationDesktopShortcut"
  43.                       Name="Foo Application"
  44.                       Description="The Foo is Cool!"
  45.                       Target="[#NEW_TEXT_DOCUMENT.TXT]"
  46.                       WorkingDirectory="INSTALLFOLDER"
  47.                       Directory="DesktopFolder"/>
  48.             <RemoveFolder Id="DesktopFolder" On="uninstall"/>
  49.             <RegistryValue Root="HKCU" Key="Software\Microsoft\FooApplication" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
  50.           </Component>
  51.         </DirectoryRef>
  52.         <Feature Id="DefaultFeature" Title="Main Feature" Level="1">
  53.             <ComponentRef Id="MEMHIS_PHASE_2_TESTING_RESULTS.DOCX" />
  54.             <ComponentRef Id="NEW_TEXT_DOCUMENT.TXT" />
  55.             <ComponentRef Id="IMAGES.JPG" />
  56.             <ComponentRef Id="PROXY.TXT" />
  57.             <ComponentRef Id="StartMenuShortcuts" />
  58.             <ComponentRef Id="FooDesktopShortcutMenu"/>
  59.         </Feature>
  60.         <UI />
  61.         <UIRef Id="WixUI_Minimal" />
  62.         <Icon Id="DesktopIcon.exe" SourceFile="D:\TestPKG\New Text Document.txt" />
  63.         <Icon Id="StartMenuIcon.exe" SourceFile="D:\TestPKG\New Text Document.txt" />
  64.     </Product>
  65. </Wix>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement