system information

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • kala
    Forum Member
    • Apr 2008
    • 17

    system information

    hai to all,
    i have a setup program, but before installation it needs to check for the CPU,RAM size & some other system info and if it does not satisfy minimum requirements the program should exit.

    Can someone help me with the project
  • ShadowUK
    No longer a forum member
    • Oct 2007
    • 1322

    #2
    Originally posted by kala View Post
    hai to all,
    i have a setup program, but before installation it needs to check for the CPU,RAM size & some other system info and if it does not satisfy minimum requirements the program should exit.

    Can someone help me with the project
    RAM:
    Code:
    local required_ram = 512;
    
    if (System.GetMemoryInfo().TotalRAM < required_ram) then
       Application.Exit();
    end

    Comment

    • RizlaUK
      Indigo Rose Customer
      • May 2006
      • 5552

      #3
      CPU

      Embrace change in your life, you never know, it could all work out for the best

      Comment

      Working...
      X