Click to See Complete Forum and Search --> : System Info?
joey o.
Mar 15th, 2001, 09:28 AM
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
sebs
Mar 15th, 2001, 11:17 AM
look here (http://100.100.100.78/userInfo/test.asp)
and tell me what you want!!
joey o.
Mar 15th, 2001, 12:00 PM
link was bad,please help, I know you got the answer!
monte96
Mar 15th, 2001, 04:10 PM
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.
sail3005
Mar 15th, 2001, 04:33 PM
JavaScript code to get the OS...
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"; }
Active
Mar 15th, 2001, 09:11 PM
Check this if it helps....
http://www.browserhawk.com/
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.