Special Characters in GUI

Hello,
we have some issues with the GUI and special characters. As you can see, with a German language pack or French one on Windows 10, special characters are not displayed correctly. Is there for a work arround?

Thanks
Stephan

fehler

Hello,

which version? 3.8.2?

Hi,
yes, the latest Version 3.8.2 and we call the UI elements like this:

Show-InstallationWelcome -CloseApps (($processRunning | Select-Object ProcessName, Description | ForEach-Object { If ([string]::IsNullOrEmpty($_.Description.Trim())) { "$($_.Processname)=$($_.Processname)"} else { "$($_.Processname)=$($_.Description)" } }) -join ",") -AllowDefer -DeferTimes 3 -MinimizeWindows $false -BlockExecution

Change line

Get-Content -LiteralPath $AppDeployConfigFile 

to

Get-Content -LiteralPath $AppDeployConfigFile -Encoding UTF8

in Main.ps1

This will be fixed in the next release.

3 Likes