我正在尝试执行一个自己运行的批处理文件。我现在尝试通过将其部署为Windows服务来自动执行此操作,该服务侦听文件夹并使用文件观察器事件调用批处理文件。这是代码 -
void fileSystemWatcher_Created(object sender, FileSystemEventArgs e)
{
ServiceEventLog.WriteEntry(TheServiceName + " Inside fileSystemWatcher_Created() - ");
if (e.Name.Trim().ToUpper().Contains("FU4DGF_TRADES"))
{
try
{
Utilities.SendEmail("IAMLDNSMTP", 25, "desmond.quilty@investecmail.com", "IAMITDevelopmentServices@investecmail.com", "Ben.Howard@investecmail.com", "prasad.matkar@investecmail.com", "StatPro BatchFile Execution Started ", "");
int exitCode;
// ProcessStartInfo processInfo;
ServiceEventLog.WriteEntry(TheServiceName + " Before creation of instance of Batch process - ");
Process process = new Process();
process.StartInfo.FileName = @"C:\Program Files (x86)\StatPro Suite\MonthlyUpload.bat";
process.StartInfo.RedirectStandardOutput = false;
process.StartInfo.RedirectStandardError = false;
process.StartInfo.CreateNoWindow = false;
process.StartInfo.WorkingDirectory = @"C:\Program Files (x86)\StatPro Suite";
process.StartInfo.UseShellExecute = false;
ServiceEventLog.WriteEntry(TheServiceName + " Before start of Batch process - ");
process.Start();
ServiceEventLog.WriteEntry(TheServiceName + " After start of Batch process - ");
process.WaitForExit();
//while (!process.HasExited)
//{
// System.Threading.Thread.Sleep(100);
//}
ServiceEventLog.WriteEntry(TheServiceName + " After process.close - ");
System.Environment.ExitCode = process.ExitCode;
}
我可以从我的事件日志中看到,它一直到日志记录 - 在批处理过程开始之前。据推测,在此过程之后,进程通过调用process.Start()开始,但后来没有任何反应。事件日志中没有任何内容,服务仍在运行,即没有崩溃。没有错误。我可以从任务管理器看到它确实调用它应该通过批处理文件调用的exe但是exe只是保留在内存中,具有恒定的内存和0 CPU使用率表明exe没有做任何事情。如果我手动运行批处理文件,它可以正常工作。知道会出现什么问题吗?
答案 0 :(得分:1)
您已停用UseShellExecute
。这意味着您无法使用shell来执行文件。 bat
个文件不是可执行文件,它们是shell脚本。
由于您还没有重定向标准I / O,只需启用UseShellExecute
即可。您应该没问题。