Browse Source

Minor typo fixes

pull/11/head^2
fekt 2 years ago
parent
commit
06673d1ffd
  1. 4
      advanced/creating-silent-dragon-lite-msi-installer-for-windows-with-wixl.md

4
advanced/creating-silent-dragon-lite-msi-installer-for-windows-with-wixl.md

@ -20,7 +20,7 @@ The icon file `silentdragon.ico` is currently not included in release zip, but i
## Create WiX source file (.wxs)
This is an XML file. You should name it what you want the .msi file to be named IE: `SilentDragonLite-1.5.2.wxs`
Below is a copy of the contents of the `SilentDragon-1.5.2.wxs` file Note that GUID's all need to be unique. This will create shortcuts to SilentDragon on desktop and in the start menu as well as have uninstall support from Add/Remove Programs. A tutorial that explains the basics of creating these files can be found here: https://www.firegiant.com/wix/tutorial/
Below is a copy of the contents of the `SilentDragonLite-1.5.2.wxs` file Note that GUID's all need to be unique. This will create shortcuts to SilentDragon on desktop and in the start menu as well as have uninstall support from Add/Remove Programs. A tutorial that explains the basics of creating these files can be found here: https://www.firegiant.com/wix/tutorial/
```
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
@ -53,7 +53,7 @@ Below is a copy of the contents of the `SilentDragon-1.5.2.wxs` file Note that G
<Directory Id="ProgramMenuFolder" Name="Programs">
<Directory Id="ProgramMenuDir" Name="SilentDragonLite">
<Component Id="ProgramMenuDir" Guid="a47c750e-1dcc-49cd-bec1-d283f4b24401>
<Component Id="ProgramMenuDir" Guid="a47c750e-1dcc-49cd-bec1-d283f4b24401">
<RemoveFolder Id='ProgramMenuDir' On='uninstall' />
<RegistryValue Root='HKCU' Key='Software\[Manufacturer]\[ProductName]' Type='string' Value='' KeyPath='yes' />
</Component>

Loading…
Cancel
Save