0

I want to add customized message in welcome screen instead of default in wixUI_en-us.wxl. For this I am trying to change <String Id="WelcomeDlgDescription"

Created a new wxl file

<?xml version="1.0" encoding="utf-8"?>
<WixLocalization Culture="en-us" xmlns="http://schemas.microsoft.com/wix/2006/localization">

<String Id="WelcomeDlgDescription" Overridable="yes">This is a custom welcome message. Click Next to continue or Cancel to exit.</String>

</WixLocalization>

But I am not sure what WiX Fragment I need to enter in my WSX file

https://wixtoolset.org/documentation/manual/v3/wixdev/extensions/localized_extensions.html https://wixtoolset.org/documentation/manual/v3/howtos/ui_and_localization/make_installer_localizable.html

Above both link I tried but not able to add the fragment in wsx file for "WelcomeDlgDescription"

Can you please guide what code should go in product.wsx to show my custome message

Bob Arnson
  • 21,377
  • 2
  • 40
  • 47
Sijith
  • 3,740
  • 17
  • 61
  • 101
  • Thanks for the link, but its about custom dialog, I dont want to add any new dialog instead need to change the strign in welcome dialog – Sijith Sep 14 '20 at 10:43
  • [Maybe check this answer quickly](https://stackoverflow.com/questions/52654935/changing-text-color-to-wix-dialogs/52674815#52674815). – Stein Åsmul Sep 14 '20 at 20:32

1 Answers1

0

<String Id="WelcomeDlgDescription">This is a custom welcome message. Click Next to continue or Cancel to exit.</String>

You were close. I grabbed this from the WiX page for changing default dialogs.

https://github.com/glytzhkof/WiXCustomDialog

Stein Åsmul
  • 39,960
  • 25
  • 91
  • 164
Doc
  • 698
  • 3
  • 16