如何在安装程序中判断操作系统是否是64位 inno

[Setup]
; 开启64位模式
ArchitecturesInstallIn64BitMode=x64

[Run]

;根据是否是64位进行不同的操作
Filename: "..."; Check: Is64BitInstallMode
Filename: "..."; Check: not Is64BitInstallMode

原文地址:https://www.cnblogs.com/MaxWoods/p/4135763.html