Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am interested in creating a website that needs to know as much specific hardware (ie computer model, cpu model, RAM size, etc) as possible.

Are you aware of any method to find out this information?

I know about ActiveX controls, however I'd prefer to use a more flexible method. Javascript? Asp.NET? Flash? Java? Silverlight?

Thank you!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
693 views
Welcome To Ask or Share your Answers For Others

1 Answer

Javascript : Impossible;

.Net/Silverlight (If you develop a non-based web browser app) : http://www.c-sharpcorner.com/uploadfile/dpatra/system-information-from-registry-in-silverlight-4/

Java (vi a java applet): get OS-level system information.

ActionScript/Flash : I don't think you can get all the information you are looking for, but you can get the free available memory (documentation).

EDIT : Here is more information about the system information you can get through an applet. For a RIA application, there are more functionnalities listed here. I found a very good SO post that could be very useful.

To get the machine name, the easiest (only?) way to do so is to take it from the ip. So, a server language is needed here.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...