|
-
Aug 29th, 2001, 09:43 PM
#1
Thread Starter
Hyperactive Member
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
-
Aug 30th, 2001, 12:21 AM
#2
Registered User
-
Aug 30th, 2001, 05:25 AM
#3
Frenzied Member
1. Do you have a sensor on the CPU and motherboard?
2.
VB Code:
Private Declare Sub GetSystemInfo Lib "kernel32" (lpSystemInfo As SYSTEM_INFO)
Private Type SYSTEM_INFO
dwOemID As Long
dwPageSize As Long
lpMinimumApplicationAddress As Long
lpMaximumApplicationAddress As Long
dwActiveProcessorMask As Long
dwNumberOrfProcessors As Long
dwProcessorType As Long
dwAllocationGranularity As Long
dwReserved As Long
End Type
Private Sub Form_Load()
Dim SInfo As SYSTEM_INFO
'KPD-Team 1998
'URL: [url]http://www.allapi.net/[/url]
'Set the graphical mode to persistent
Me.AutoRedraw = True
'Get the system information
GetSystemInfo SInfo
'Print it to the form
Me.Print "Number of procesor:" + str$(SInfo.dwNumberOrfProcessors)
Me.Print "Processor:" + str$(SInfo.dwProcessorType)
Me.Print "Low memory address:" + str$(SInfo.lpMinimumApplicationAddress)
Me.Print "High memory address:" + str$(SInfo.lpMaximumApplicationAddress)
End Sub
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
|