使用NSIS安装软件时如何设置进度条文字?

When installing the software using NSIS how to set the progress bar text?

安装软件时,我看到每个 dll 或可执行文件名称的进度。我怎样才能隐藏它(例如,在下面的屏幕截图中它显示提取 res.dll 100%)并显示我自己的进度文本(例如,状态:正在安装 EMR 应用程序)

SetDetailsPrint 控制指令是否显示在标签 and/or 列表框中。

Section
DetailsPrint "Start"
SetDetailsPrint listonly
DetailsPrint "Hello"
File 1234.txt ; List only
Sleep 3333
SetDetailsPrint none
DetailsPrint "World
File 5678.txt ; "Hidden"
Sleep 3333
SetDetailsPrint both
DetailsPrint "Finished"
SectionEnd