CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jul 2000
    Location
    Bangalore, India
    Posts
    144

    How to get Low Level system details programatically ?

    Hi,
    How can anyone get the low level Bios / system details like what processor is used etc of a system programatically ?

    using win32 or asm code ?

    Any code snippets or pointer would be greatly appreciated.

    Many Thanks for your time.

    Kind Regards,
    Natarajan.


    Kind Regards,
    Natarajan.

    http://www.CodeBytes.net/

  2. #2
    Join Date
    Apr 2000
    Posts
    370

    Re: How to get Low Level system details programatically ?

    you can use GetSystemInfo() method to get it.

    Tell me if it Helped!!




    Rating helps to serve better!!
    Rate this if it helped you!!

  3. #3
    Join Date
    Jul 2000
    Location
    Bangalore, India
    Posts
    144

    Re: How to get Low Level system details programatically ?

    Hi,
    Though you answer points in that direction, I was looking for something more like how do i access the BIOS setup details etc.

    Many Thanks for your time.

    Cheers,
    Natarajan.

    Kind Regards,
    Natarajan.

    http://www.CodeBytes.net/

  4. #4
    Join Date
    Aug 1999
    Location
    Canada
    Posts
    2,076

    Re: How to get Low Level system details programatically ?

    1) Take a look to WMI. There is Win32_BIOS class and you can get some useful information. But it works on WIN2000 only.

    2) SMBIOS ( or DMI ) compliant machine.
    In this case all informations are stored on F0000:10000 memory area in defined structures. In 16 bit app you can access it without any problem.

    In WIN32 isn't easy way. You can map this memory area to file, but it isn't very simple.

    First of all check WEB for SMBIOS specification. I found some description and examples with source code on INTEL and IBM developer site. If you need more deatails, let me know. You question is more complex than you are expecting :-)))

    Good luck.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured