|
-
Mar 15th, 2001, 10:28 AM
#1
Thread Starter
Hyperactive Member
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
-
Mar 15th, 2001, 12:17 PM
#2
Frenzied Member
look here
and tell me what you want!!
-
Mar 15th, 2001, 01:00 PM
#3
Thread Starter
Hyperactive Member
link was bad,please help, I know you got the answer!
-
Mar 15th, 2001, 05:10 PM
#4
Frenzied Member
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.
oOOo--oOOo
__ /\/\onte96
oOOo--oOOo
Senior Programmer/Analyst
MCP
[email protected]
[email protected]
Your results may vary.. some restrictions may apply.. pricing and participation may vary.. not available in all states.. professional driver closed course..quantities limited..
-
Mar 15th, 2001, 05:33 PM
#5
PowerPoster
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"; }
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
-
Mar 15th, 2001, 10:11 PM
#6
Addicted Member
Check this if it helps....
http://www.browserhawk.com/
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|