Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Install Shield 5.5. I would like to know whether is it possible to know the total memory (RAM) of the system using API of install shield? If yes, please let me know how can we do that?

Thanks for help, Nayan

share|improve this question
InstallShield 5.x has not been supported for years, and doesn't really support any modern versions of Windows. (That's not to say it won't work, but it was written in an era where GB of memory or TB of hard drive were so rare that they may not be reported correctly.) – Michael Urman Aug 22 '12 at 11:46

1 Answer

up vote 1 down vote accepted

Michael is right. You should use a newer tool as that's got to be about 15 years old now.

InstallScript has/had a SysInfo function but I doubt it works today. You could possibly declare external DLL functions using prototype and UseDLL() calls to work directly with the Win32 API and/or WMI classes to get the information but why bother?

Just upgrade to something that uses Windows Installer ( InstallShield or WiX ) and use the PhysicalMemory property to get the amount of RAM on the machine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.