Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Free Network monitoring tool

Status
Not open for further replies.

IThead

MIS
Joined
Sep 6, 2002
Messages
102
Location
US
Hi,
Does anyone knows of any good free network monitorint tool?
ping and check diskspace?
 
If you want to ping a server, I'd recommend a free tool call PING.
For disk space, try treesize pro.

<signature for rent>
 
Here is a VBscript that you can use to check diskspace.
at a command prompt type the following:

cscript diskspace.vbs servername drivename
(e.g. cscript diskspace.vbs fileserver1 c)
Code:
set args = Wscript.arguments
dim strFreeSpace
strServer = args(0)
strDrive = args(1)

Set DiskSet = GetObject("winmgmts:{impersonationLevel=impersonate}//" & strServer).ExecQuery("select FreeSpace,Size,Name from Win32_LogicalDisk where Name='" & strDrive & ":'")
for each Disk in DiskSet
   
      strFreeSpace = Disk.FreeSpace/Disk.Size * 100
      WScript.Echo "Drive " & Disk.Name & " % free =" & strFreeSpace
   
Next
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top