With WordPad being planned to be removed from Windows how do we generate rtf for EULA #7705
Replies: 2 comments 14 replies
-
I had the same thought when I saw that article. :) Unfortunately, this isn't an issue in the WiX codebase. The issue is in the Windows Installer itself. Its RTF control doesn't like advanced RTF content. I'm sure something new will come along to help clean up complex RTF files. Maybe someone will even help contribute such a clean-up mechanism to WiX so we can auto-fix complex RTF. Or maybe Microsoft will fix the RTF control in the Windows Installer to handle more complex RTF. 🤣 |
Beta Was this translation helpful? Give feedback.
-
You could maintain your source document in Markdown format and use Pandoc to programmatically convert it to rich text format. pandoc -s eula.md -o eula.rtf See https://pandoc.org/demos.html for more info. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
At the weekend I saw this article Microsoft is removing WordPad from Windows after nearly 30 years on the verge.
This is ringing alarm bells for our open source project Chem4Word
We currently use WiX 3.11 in combination with Visual Studio 2022 and WiX toolset extension to generate our installer (Setup.msi)
When we first started to use WiX we quickly discovered that WiX 3.* produced a blank EULA screen with the rtf file which we generated using MS Word.
Google showed us that the fix was to use WordPad to write the rtf files as MS Word was putting in information which WiX did not understand.
My Question is therefore
What versions of WiX support rtf files written by MS Word for the EULA?
If none then this is a serious issue going forward and needs to be addressed.
Beta Was this translation helpful? Give feedback.
All reactions