Skip to content

Commit

Permalink
corrected a few other examples
Browse files Browse the repository at this point in the history
  • Loading branch information
untra authored and barnson committed Apr 9, 2024
1 parent 5114933 commit e8d2a1c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Now you can add an install condition to the package so that it only installs on
InstallCommand="/q /ACTION=Install"
RepairCommand="/q ACTION=Repair /hideconsole"
UninstallCommand="/q ACTION=Uninstall /hideconsole"
<strong class="highlight">InstallCondition="NOT VersionNT64 AND VersionNT >= v5.1"</strong> />
InstallCondition="NOT VersionNT64 AND VersionNT >= v5.1" />
</PackageGroup>
</Fragment>
</Wix>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ After the searches are defined and stored into variables, the variables can then
InstallCommand="/q /ACTION=Install"
RepairCommand="/q ACTION=Repair /hideconsole"
UninstallCommand="/q ACTION=Uninstall /hideconsole"
InstallCondition="x86 = 1 AND OSVersion >= v5.0.5121.0 <strong class="highlight">AND patchLevel = 0</strong>" />
InstallCondition="x86 = 1 AND OSVersion >= v5.0.5121.0 AND patchLevel = 0" />
</PackageGroup>
</Fragment>
</Wix>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ When using a WixStdBA theme that displays the RTF license, it is highly recommen
<Bundle>
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense">
<bal:WixStandardBootstrapperApplication
<strong class="highlight">LicenseFile="path\to\license.rtf"</strong>
LicenseFile="path\to\license.rtf"
LogoFile="path\to\customlogo.png"
/>
</BootstrapperApplicationRef>
Expand All @@ -35,7 +35,7 @@ The following example links to a license page on the internet.
<Bundle>
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense">
<bal:WixStandardBootstrapperApplication
<strong class="highlight">LicenseUrl="http://example.com/license.html"</strong>
LicenseUrl="http://example.com/license.html"
LogoFile="path\to\customlogo.png"
/>
</BootstrapperApplicationRef>
Expand Down

0 comments on commit e8d2a1c

Please sign in to comment.