Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"install_launcher": true,
"document_types": "",
"install_options": "",
"uninstall_options": "",
"installer_path": "_installer",
"post_install_script": "",
"pre_uninstall_script": "",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
@echo off
setlocal enabledelayedexpansion
{% for name in cookiecutter.uninstall_options -%}
SET OPTION_{{ name.upper() }}=%{{ loop.index }}
{% endfor -%}

CALL "%~dp0pre_uninstall.bat"
17 changes: 14 additions & 3 deletions {{ cookiecutter.format }}/unicode.wxl
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
<WixLocalization Culture="en-US" xmlns="http://wixtoolset.org/schemas/v4/wxl">
<!-- We override this string to remove the sentence "You can change the default
installation folder", which is an option we don't currently offer. -->
<String
Id="InstallScopeDlgPerMachineDescription"
Value="[ProductName] will be installed in a per-machine folder and be available for all users. You must have local Administrator privileges." />
</WixLocalization>

<String
Id="MaintenanceWelcomeDlg_Title"
Value="[ProductName] Uninstallation" />

<String
Id="MaintenanceWelcomeDlgTitle"
Value="{\WixUI_Font_Bigger}[ProductName] Uninstallation Wizard" />

<String
Id="MaintenanceWelcomeDlgDescription"
Value="[ProductName] is already installed. This wizard will allow you to customize the uninstallation process. Click Next to continue or cancel to exit the Uninstallation Wizard." />

</WixLocalization>
Loading