NSIS:将自定义文本添加到状态文本框中

时间:2011-06-27 11:33:41

标签: windows-installer nsis status

我有NSIS安装程序,我需要MSI 3.1才能安装C ++运行时。

如果找不到安装程序或它已过时,我会显示消息框。 这是代码:

Section "Install"
  GetDLLVersion "$SYSDIR\msi.dll" $R0 $R1  
  ${If} $R0 < 0x00030001 ;require version 3.1 or higher of MSI Installer
    MessageBox MB_ICONINFORMATION|MB_OK "Windows Installer 3.1 or higher is required. Please install or update your Windows Installer" IDOK "exit"  
  ${EndIf} 

标签退出就在SectionEnd之前。

如何将自定义文本添加到NSIS状态文本框中(有关正在解压缩的文件的信息是否滚动)?现在只有“已完成”的文字。

1 个答案:

答案 0 :(得分:2)

DetailPrint(您可以使用SetDetailsPrint控制打印位置)