|
#1
|
||||
|
||||
|
ISSystemInfo A complete system-information module for Inno Setup Detect OS, CPU, GPU, RAM, display and power/battery info from inside your installer one line each. v0.9 Inno Setup 5 (ANSI & Unicode) → 7 Windows Vista / Server 2008 and later ───────────────────────────────────────────── What is it? ISSystemInfo is a single, self-contained [Code] module for Inno Setup that gives your installer real, live answers about the machine it's running on without writing a line of WinAPI code yourself. Drop the .iss file in, #include it, and call what you need. It's built for real installer logic, not just for display: gate a large download behind a minimum DirectX/GPU requirement, skip a lengthy install step while the machine is running on battery, pick the right redistributable based on detected CPU architecture, or just log the full hardware profile for support tickets all from a single function call. No external DLLs, no dependencies to ship pure Pascal Script. What can it tell you? Operating System
Processor
Graphics
Memory
Display
Power
Compatibility Recommended: Windows Vista / Server 2008 or later. Windows XP / Server 2003 is also supported just define CompatibleWithWinXP before including the module: Code:
#define CompatibleWithWinXP Quick examples [CODE] Code:
procedure InitializeWizard;
begin
if GetPrimaryGPUSupportDirectXVersion < 11.0 then
MsgBox('Your graphics card may not meet the minimum requirements.', mbInformation, MB_OK);
if not IsSysPluggedIn then
if MsgBox('This install may take a while and your device isn''t plugged in. Continue anyway?', mbConfirmation, MB_YESNO) = IDNO then
Abort;
end;
ISSystemInfo v0.9.zip full version history is in the changelog post. Credits Special thanks to Cesar82 for his help refining several parts of this module. ─────────────────────────────────────────────
Feedback, bug reports and feature requests are always welcome below. Last edited by Lord.Freddy; 23-09-2026 at 12:38. Reason: Update for version 0.9 |
| The Following 7 Users Say Thank You to Lord.Freddy For This Useful Post: | ||
akhaleelbaloch (11-06-2026), buttignol (23-09-2026), Cesar82 (25-10-2024), Gehrman (01-11-2025), palievka (Today), Razor12911 (01-11-2025), ScOOt3r (25-10-2024) | ||
| Sponsored Links |
| Tags |
| inno setup |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Batman Arkham City - 2xDVD9 to 4xDVD5 (Inno Setup) | Fabioddq | PC Games - CD/DVD Conversions | 74 | 23-07-2013 11:45 |
| Inno Setup Secure Installer | thilanka | Software | 0 | 21-01-2013 19:47 |
| Biathlon 2006 Problems... Please help! | RamGuy | General Gaming | 1 | 10-04-2006 03:23 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |