NSIS 修改MessageBox标题和按钮文本

Name "MessageBox 标题"
Caption "MessageBox 标题"

XPStyle on
ShowInstDetails show
OutFile "MessageBox.exe"

Section -default
System::Call 'user32::MessageBox(i $HWNDPARENT, t "梦想吧技术论坛 WwW.Dreams8.CoM", t "你的标题?", i 64) v r0'
SectionEnd

SetCompressor /SOLID lzma
SetCompress force
XPStyle on

OutFile "Test.EXE"
Name "Test"
Section "Test"
messagebox::show MB_ICONINFORMATION "messagebox::show" "" "插件 messagebox" "我知道啦"
SectionEnd

原文地址:https://www.cnblogs.com/juin/p/2590187.html