ActiveXperts Network Monitor ships with a powerful set of pre-defined checks. Each individual check has a static number of configuration items. To monitor other items, or to combine monitoring items, you can make use of custom PowerShell checks.
Most of the built-in checks have a PowerShell equivalent, implemented as a PowerShell (.ps1) script file. Out-of-the-box, each PowerShell script monitors the same items as the built-in check. Feel free to modify the script.
To add a new PowerShell-based DirectorySize monitoring check, do the following:
- On the 'Monitor menu', open 'New Monitoring Check (Script)' and choose 'New PowerShell Check'. The 'PowerShell Check' dialog box appears;
- In the 'Script File' selection box, select 'DirectorySize.ps1';
- In the 'Script Parameters'group box enter the required parameters. You can also load a working sample first by clicking on the 'Click here to load a sample' link.
To customize the above monitoring check, click on the 'Edit button' next to the 'Script File' selection box. Notepad will be launched. You can now make changes to the PowerShell script.
DirectorySize.ps1 script source code
################################################################################# # ActiveXperts Network Monitor PowerShell script, (c) ActiveXperts Software B.V. # For more information about ActiveXperts Network Monitor, visit the ActiveXperts # Network Monitor web site at https://www.activexperts.com ################################################################################# # Script # DirectorySize.ps1 # Description: # Checks the size of the specified folder # Parameters: # 1) strComputer (string) - Hostname or IP address of the computer you want to monitor # 2) strDirectory (string) - The directory we want to check # 3) numLimitMB (number) - Limit, in MB # Usage: # .\DirectorySize.ps1 '<computer>' '<directory>' '<max_size>' MBs # Sample: # .\DirectorySize.ps1 'localhost' 'C:\TEMP' 50 ################################################################################# # Parameters param ( [string]$strComputer, [string]$strDirectory, [double]$numLimitMB ) cls # Check paramters input if ( ([string]$strComputer -eq "") -or ([string]$strDirectory -eq "") -or ($numLimitMB -eq "") ) { echo "UNCERTAIN: Invalid number of parameters - Usage: .\DirecotrySize.ps1 <computer> <directory> <value in MB>" exit } #Check Path if ( !(Test-Path $strDirectory) ) { echo "UNCERTAIN: Path not found" exit } ################################################################################# # THE SCRIPT ITSELF ################################################################################# $colItems = (Get-ChildItem $strDirectory -recurse | Measure-Object -property length -sum) $size = $colItems.sum / 1MB if ( $size -le $numLimitMB ) { $succ = "SUCCESS: Directory size = " + $size + " MB, maximum allowed = " + $numLimitMB + " MB DATA:" + $numLimitMB echo $succ } else { $err = "ERROR: Directory size = " + $size + " MB maximum allowed = " + $numLimitMB + " MB DATA:" + $numLimitMB echo $err }