Advertisement
Advertisement
| 05.13.2008 at 11:37AM PDT, ID: 23398928 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: |
private static void Run(string appPath)
{
string Mess = "Run with AppPath " + appPath + " Only";
clsLog.WriteLogEntry("iZONE Log", "Action Test For Run Action", Mess, System.Diagnostics.EventLogEntryType.Information, 25 );
try
{
Process thisProcess = new Process();
thisProcess.StartInfo.FileName =appPath.ToString();
thisProcess.Start();
}
catch (Exception ex)
{
Mess += "\r\n\r\n" + ex.ToString();
clsLog.WriteLogEntry("iZONE Log", "Action Test For Run Action", Mess, System.Diagnostics.EventLogEntryType.Information, 25 );
}
finally
{
Mess += "\r\n\r\n" + "End Of Run CMD";
clsLog.WriteLogEntry("iZONE Log", "Action Test For Run Action", Mess, System.Diagnostics.EventLogEntryType.Information, 25 );
}
|