我正在使用 Inno Setup。
\n\n如果 Windows 版本是 32 位,有人可以告诉我如何终止安装吗?
\n\n或者更具体地说,当安装开始时,代码会检查 Windows 版本是否为 32 位并显示警告,然后取消安装。
\n\n完全终止安装程序的命令是什么\xe2\x80\x99?
\n\n我正在使用以下过程
\n\nprocedure CheckWindows;\nbegin\n if not IsWin64 then\n begin\n MsgBox(\'Error:The Windows version is 32bit\',mbError,MB_OK);\n WizardForm.Close;\n end;\nend;\nRun Code Online (Sandbox Code Playgroud)\n\n它确实给出了警告消息,但随后它允许用户根据需要继续。
\n\n如何彻底终止安装?
\n