且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

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

更新时间:2022-01-22 16:49:14

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


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

[Run]

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