You can launch the following VBScript through the application scheduler e.g. every 1 minute to be notified when the number of files in a given folder exceeds a configurable limit. Note: The file needs to be saved with the .vbs extension and called it through cscript.exe. You set the directory in the variable: DIRECTORY and the number of...
You can launch the following VBScript through the application scheduler e.g. every 1 minute to be notified when the size of a file exceeds a configurable limit. Note: The file needs to be saved with the .vbs extension and called it through cscript.exe. You can configure the file with the FILENAME variable and the maximum size of the fi...
You can launch the following VBScript through the application scheduler e.g. every 1 minute to be notified when a file has not been updated in X seconds. Note: The file needs to be saved with the .vbs extension and called it through cscript.exe. You can set the filename with the FILETOCHECK variable and the longest acceptable time the...
You can launch the following VBScript through the application scheduler e.g. every 1 minute to be notified when a web site or other component e.g. SMTP in IIS is stopped. Note: The file needs to be saved with the .vbs extension and called it through cscript.exe. vbscript 39 Lists the state of all IIS web sites configured on th...
Unlike Windows Server 2003 Windows Server 2008 does not log an alert to the event log when a drive in a software raid fails. To work around this limitation schedule the VBScript below with the EventSentry Application Scheduler. Note: The file needs to be saved with the .vbs extension and called it through cscript.exe. vbscript 39 L...
Removing or uninstalling the Postgres driver should only be done if you have no other applications that use Postgres on your computers. If you are certain that no other applications use Postgres you can uninstall the Postgres drivers manually by going to Program and Features in the windows control panel and choosing Uninstall for the psqlODB...
Yes EventSentry comes with a log file import utility which can be operated manually doubleclick it and navigate the interface or from the command line. The commandline documentation can be found herehttp://https://www.eventsentry.com/documentation/help/html/configevtlogimportbackup.htm. Here is an example of importing the Security ...
For any Process action or Application Scheduler object in EventSentry you can use a nonembedded script by providing the full path to the script file i.e. C:\Batch\powershellscript.ps1. In many cases it is however easier to utilize the embedded scripts functionality. This allows you to embed scripts of any kind commandline scripts...
In order to launch PowerShell scripts from EventSentry you will need to verify/change the execution policy and supply the inputformat none parameter to powershell.exe. For example: powershell inputformat none c:\scripts\eventsentry\dothis.ps1 When logging to the console from your PowerShell script make sure that you use the WriteOutp...