爱软件 专汉化 精封装 乐分享
资深原创 精雕细琢 专注专业

inno setup判断Windows系统版本

Windows 版本

5.0.2195 Windows 2000
5.1.2600 Windows XP
或 Windows XP 64-位 Edition 版本 2002(Itanium)
5.2.3790 Windows Server 2003
或 Windows XP x64 版本(AMD64/EM64T)
或 Windows XP 64-位 Edition 版本(Itanium)
6.0.6000 Windows Vista
6.0.6001 Windows Vista with Service Pack 1
或 Windows Server 2008
6.1.7600 Windows 7
或 Windows Server 2008 R2
6.1.7601 Windows 7 with Service Pack 1
或 Windows Server 2008 R2 with Service Pack 1
6.2.9200 Windows 8
或 Windows Server 2012
6.3.9200 Windows 8.1
或 Windows Server 2012 R2
6.3.9600 Windows 8.1 with Update 1
10.0.10240 Windows 10

请注意,这里通常不需要指定构建号(比如你对于 Windows 8,可以简单地使用“6.2”)。

判断方法

判断系统版本如果在xp或xp以下,程序将自动退出。

  1. function InitializeSetup: Boolean;
  2. var
  3.     Version: TWindowsVersion;
  4. begin
  5.     GetWindowsVersionEx(Version);
  6.     if (Version.Major <6) then
  7.         begin
  8.             SuppressibleMsgBox(‘该安装程序程序不支持在window xp 及xp以下版本运行。’,
  9.             mbCriticalError, MB_OK, MB_OK);
  10.         Result := False;
  11.         Exit;
  12.     end;
  13. Result := True;
  14. end;
——本页内容已结束,感谢你的支持,转载请注明出处——

赞(2) 打赏
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《inno setup判断Windows系统版本》
文章链接:https://www.kuguagantian.com/486.html
本服务条款的解释权与修改权属于织金旋律博客。详情 相关声明 免责声明
如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意。
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。
你还可以点击蓝色字体加入交流群: 博客群 会员群 加群请填写注册的用户名。

评论 抢沙发

评论前必须登录!

 

觉得文章有用就打赏一下文章作者

非常感谢你的打赏,我们将继续给力更多优质内容,让我们一起创建更加美好的网络世界!

支付宝扫一扫打赏

微信扫一扫打赏