Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Suppress Multiple Event NotificationsContent of Suppress Multiple Event Notifications.vbsMD5 Hash: FD134D72E3F2157456552815205DB196 |
||
' Description: Issues an alert if available space on a disk drive falls below 100 megabytes. Will wait one hour before issuing the next alert.
dtmStartTime = Now strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set objDiskDrives = objWMIService.ExecQuery _ ("Select * from Win32_LogicalDisk") For Each objDrive in objDiskDrives If objDrive.FreeSpace < 10000000 Then Wscript.Echo "Drive is low on disk space." End If Next Do Set objDiskDrives = objWMIService.ExecQuery _ ("Select * from Win32_LogicalDisk") For Each objDrive in objDiskDrives If objDrive.FreeSpace < 10000000 Then intElapsedHours = DateDiff("h", dtmStartTime, Now) If intElapsedHours >= 1 Then Wscript.Echo "Drive is low on disk space." dtmStartTime = Now End If End If Next Wscript.Sleep 1000 Loop | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |