我有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状态文本框中(有关正在解压缩的文件的信息是否滚动)?现在只有“已完成”的文字。