Results 1 to 6 of 6

Thread: System Info?

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 1999
    Location
    ma,usa
    Posts
    485
    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

  2. #2
    Frenzied Member sebs's Avatar
    Join Date
    Sep 2000
    Location
    Aylmer,Qc
    Posts
    1,606
    look here
    and tell me what you want!!

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 1999
    Location
    ma,usa
    Posts
    485
    link was bad,please help, I know you got the answer!

  4. #4
    Frenzied Member monte96's Avatar
    Join Date
    Sep 2000
    Location
    Somewhere in AZ
    Posts
    1,379
    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..

  5. #5
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340
    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

  6. #6
    Addicted Member Active's Avatar
    Join Date
    Jan 2001
    Location
    Lat: 13° 4' 46" N, Long: 80° 15' 20" E
    Posts
    209
    Check this if it helps....

    http://www.browserhawk.com/
    If you can't beat your computer at chess, try kickboxing !!!
    [Download Tag Editing Tools.]

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