您的位置:首页 > 其它

InstallShield高级应用--检测系统ServerPack版本,SP2前不支持则 abort

2012-05-11 11:18 357 查看
//检测系统ServerPack版本,SP2前不支持则 abort
function CheckServerPackVersion()
BOOL bCheckSP;
begin
if(SYSINFO.WINNT.nServicePack <2) then
bCheckSP =FALSE;
if ((SYSINFO.nOSMajor == 5) && (SYSINFO.nOSMinor == 1)) then //Windows XP : 5.1
bCheckSP = TRUE;
elseif ((SYSINFO.nOSMajor == 5) && (SYSINFO.nOSMinor == 2)) then // Windows 2003
bCheckSP = TRUE;
endif;
if(bCheckSP = TRUE) then
switch (SELECTED_LANGUAGE)
case ISLANG_CHINESE_PRC:
MessageBox("安装程序需要 ServicePack 2 (含) 以上版本支持。", WARNING);
case ISLANG_ENGLISH:
MessageBox("For This setup the ServicePack version must be more than 2(Include) .", WARNING);
default:
MessageBox("For This setup the ServicePack version must be more than 2(Include).", WARNING);
endswitch;
abort;
endif;
endif;

end;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐