在Inno Setup中确定Windows版本

前端之家收集整理的这篇文章主要介绍了在Inno Setup中确定Windows版本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Inno Setup来更改操作系统中的回收站.如果用户运行Windows 7或Windows XP,我需要做一些案例.我尝试使用:
if not FileExists(winDir + '\System32\imageres.dll') then
  if not FileExists(winDir + '\System32\shell32.dll') then
    installError(3);

但它似乎无法找到imageres.dll或shell32.dll,即使我已经验证它们存在.我究竟做错了什么?或者我可以用另一种方式检查Windows版本吗?

解决方法

您应该使用 GetWindowsVersionEx功能.它填补了 TWindowsVersion的记录:
TWindowsVersion = record
  Major: Cardinal;             // Major version number
  Minor: Cardinal;             // Minor version number
  Build: Cardinal;             // Build number
  ServicePackMajor: Cardinal;  // Major version number of service pack
  ServicePackMinor: Cardinal;  // Minor version number of service pack
  NTPlatform: Boolean;         // True if an NT-based platform
  ProductType: Byte;           // Product type (see below)
  SuiteMask: Word;             // Product suites installed (see below)
end;

还有很多其他相关功能.请参阅下面的“系统功能”,电话:this page.

原文链接:https://www.f2er.com/delphi/103135.html

猜你在找的Delphi相关文章