Results 1 to 3 of 3

Thread: Some really hard ones...

  1. #1

    Thread Starter
    Hyperactive Member zer0_flaw's Avatar
    Join Date
    Apr 2001
    Posts
    448

    Some really hard ones...

    I have a few questions... I know they're possible but I don't know how. Anyway, here they are:

    1) How can I get the current CPU and System temperatures?

    2) How can I get the name of the processor, what type of network card is installed, and any other good info like that?

    3) I'm connected to a network and am admin. How can I monitor what sites are visited by anyone on the network?

    4) I'm connected to a network and am admin. How can I monitor what files people on the network download?

    I know I asked a lot... thanks in advance for any responces. Later,

    -zer0 flaw

  2. #2
    Registered User Nucleus's Avatar
    Join Date
    Apr 2001
    Location
    So that's what you are up to ;)
    Posts
    2,530
    also try c++ forum.

  3. #3
    Frenzied Member Vlatko's Avatar
    Join Date
    Aug 2000
    Location
    Skopje, Macedonia
    Posts
    1,409
    1. Do you have a sensor on the CPU and motherboard?
    2.
    VB Code:
    1. Private Declare Sub GetSystemInfo Lib "kernel32" (lpSystemInfo As SYSTEM_INFO)
    2. Private Type SYSTEM_INFO
    3.     dwOemID As Long
    4.     dwPageSize As Long
    5.     lpMinimumApplicationAddress As Long
    6.     lpMaximumApplicationAddress As Long
    7.     dwActiveProcessorMask As Long
    8.     dwNumberOrfProcessors As Long
    9.     dwProcessorType As Long
    10.     dwAllocationGranularity As Long
    11.     dwReserved As Long
    12. End Type
    13. Private Sub Form_Load()
    14.     Dim SInfo As SYSTEM_INFO
    15.     'KPD-Team 1998
    16.     'URL: [url]http://www.allapi.net/[/url]
    17.     'Set the graphical mode to persistent
    18.     Me.AutoRedraw = True
    19.     'Get the system information
    20.     GetSystemInfo SInfo
    21.     'Print it to the form
    22.     Me.Print "Number of procesor:" + str$(SInfo.dwNumberOrfProcessors)
    23.     Me.Print "Processor:" + str$(SInfo.dwProcessorType)
    24.     Me.Print "Low memory address:" + str$(SInfo.lpMinimumApplicationAddress)
    25.     Me.Print "High memory address:" + str$(SInfo.lpMaximumApplicationAddress)
    26. End Sub
    I am become death, the destroyer of worlds.
    mail:[email protected]

    • Visual Basic 6.0 & .NET
    • Visual C++ 6.0 & .NET
    • ASP
    • LISP
    • PROLOG
    • C
    • Pascal

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