Low Disk Space Alert, send email Windows 2003 Server PerfMon Alert - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T18:32:47Z http://stackoverflow.com/feeds/question/299814 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/299814/low-disk-space-alert-send-email-windows-2003-server-perfmon-alert 1 Low Disk Space Alert, send email Windows 2003 Server PerfMon Alert nardbard 2008-11-18T19:18:36Z 2008-12-01T12:41:52Z <p>I'm trying to setup an alert to let me know via email (SMTP) when free disk space on one of my servers is less than a specified value. To do this I'm using PerfMon alerts, as described at <a href="http://support.microsoft.com/kb/324796" rel="nofollow">MSFT Technet</a>. I have the alert working and writing to the system log, but when I try to set it to 'Run Program' it fails. The log alert fires but the program fails.</p> <p>The program I'm using is a small C# app I wrote to send an smtp email. I have tested the app independently from this server, running it manually and it works fine, without any user interaction (console app). But when I have it set to run via the alert trigger it fails.</p> <p>Thanks, Bryan</p> http://stackoverflow.com/questions/299814/low-disk-space-alert-send-email-windows-2003-server-perfmon-alert/300579#300579 1 Answer by Guge for Low Disk Space Alert, send email Windows 2003 Server PerfMon Alert Guge 2008-11-18T23:44:56Z 2008-11-18T23:44:56Z <p>Could it be that you have no command line arguments for your program? I found the following on <a href="http://support.microsoft.com/kb/324752/en-us" rel="nofollow">http://support.microsoft.com/kb/324752/en-us</a></p> <blockquote> <p>When an alert occurs, the service creates a process and runs the specified command file. The service also copies any command-line arguments you define to the command line that is used to run the file. Click Command Line Arguments, and then click to select the appropriate check boxes to include the arguments that you want when the program is run. </p> <p>Note You must select at least one command-line argument or the program will not run. (This is true regardless of what program you have selected.)</p> </blockquote> <p>Do you have some kind if exception handling/logging in your C# app? Do you get anything from it?</p> <p>Could you put your C# app call in a batch file and start that from the alert? If you add something like </p> <pre><code>echo %date% %time% &gt; log.txt </code></pre> <p>at the start of your batch file you could see if it started at all.</p> http://stackoverflow.com/questions/299814/low-disk-space-alert-send-email-windows-2003-server-perfmon-alert/302778#302778 1 Answer by atzz for Low Disk Space Alert, send email Windows 2003 Server PerfMon Alert atzz 2008-11-19T17:54:31Z 2008-11-19T17:54:31Z <p>Did you set the <em>Run As</em> field in the alert properties? If not, your program is being run as a LocalService, which does not have network access (among other things).</p> <p>Try setting it to a user account under which you were able to verify that your program works correctly.</p>