杉宫竹苑工作室

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 2480|回复: 0

Installshield 判断系统版本

[复制链接]
发表于 2018-5-24 15:26:32 | 显示全部楼层 |阅读模式

正式会员享受无限制浏览网站功能和高速网盘下载,赶快加入本站吧!

您需要 登录 才可以下载或查看,没有账号?立即注册

x

判断系统版本号有很多种方式:

1、用SYSINFO结构体获取



  1. if ((SYSINFO.nWinMajor == 6 ) && (SYSINFO.nWinMinor >= 0)) then

  2.      MessageBox ("The system is more than XP.", SEVERE);

  3. else

  4.      MessageBox ("The system is Window XP and before.", SEVERE);

  5. endif;
复制代码

2、通过查询注册表来判断系统:

  1. NUMBER nOS,nvResult;
  2. STRING svOS;

  3. nOS = REGDB_NUMBER;
  4. RegDBSetDefaultRoot( HKEY_LOCAL_MACHINE );
  5. RegDBGetKeyValueEx( "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion","CurrentVersion", nOS, svOS, nvResult);
  6. if (svOS == "6.0") then
  7.     MessageBox("We are on Vista!", INFORMATION);
  8. else
  9.     if (svOS == "5.1") then
  10.         MessageBox("We are on XP!",INFORMATION);
  11.     endif;
  12. endif;
复制代码

还有一种方法是调用 GetSystemInfo函数,具体函数用法参见help文档。


Operating

system

Version

number

dwMajor

Version

dwMinor

Version

Other
Windows 76.161OSVERSIONINFOEX.wProductType == VER_NT_WORKSTATION
Windows Server 2008 R26.161OSVERSIONINFOEX.wProductType != VER_NT_WORKSTATION
Windows Server 20086.060OSVERSIONINFOEX.wProductType != VER_NT_WORKSTATION
Windows Vista6.060OSVERSIONINFOEX.wProductType == VER_NT_WORKSTATION
Windows Server 2003 R25.252GetSystemMetrics(SM_SERVERR2) != 0
Windows Server 20035.252GetSystemMetrics(SM_SERVERR2) == 0
Windows XP5.151Not applicable
Windows 20005.050Not applicable

Operating

system

Version

number

dwMajor

Version

dwMinor

Version

Other
Windows 76.161OSVERSIONINFOEX.wProductType == VER_NT_WORKSTATION
Windows Server 2008 R26.161OSVERSIONINFOEX.wProductType != VER_NT_WORKSTATION
Windows Server 20086.060OSVERSIONINFOEX.wProductType != VER_NT_WORKSTATION
Windows Vista6.060OSVERSIONINFOEX.wProductType == VER_NT_WORKSTATION
Windows Server 2003 R25.252GetSystemMetrics(SM_SERVERR2) != 0
Windows Server 20035.252GetSystemMetrics(SM_SERVERR2) == 0
Windows XP5.151Not applicable
Windows 20005.050Not applicable



回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|小黑屋|手机版|Archiver|SgzyStudio

GMT+8, 2024-5-14 14:02 , Processed in 0.105349 second(s), 19 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表