-
HI
I need a way to get the following items through a web page. Any language will do. Does anyone know?:
Operating system
Memory available(Hard disk by Drive and RAM)
Type and speed of modem
IE Version
Any and all help will be appreciated
Thanks
joeyO2
-
look here
and tell me what you want!!
-
link was bad,please help, I know you got the answer!
-
Without writing your own activeX dll that is downloaded and run on the client side, the only one of the things you mentioned that you can get is the browser version.
The rest of that stuff requires APIs to collect.
-
JavaScript code to get the OS...
Code:
if(navigator.userAgent.indexOf('IRIX') != -1)
{ var OS = "Irix"; }
else if((navigator.userAgent.indexOf('Win') != -1) &&
(navigator.userAgent.indexOf('95') != -1))
{ var OS = "Windows 95"; }
else if((navigator.userAgent.indexOf('Win') != -1) &&
(navigator.userAgent.indexOf('98') != -1))
{ var OS = "Windows 98"; }
else if(navigator.userAgent.indexOf('Win') != -1)
{ var OS = "Windows NT"; }
else if(navigator.userAgent.indexOf('Mac') != -1)
{ var OS = "Macintosh"; }
else { var OS = "Other"; }
-
Check this if it helps....
http://www.browserhawk.com/