我开发了一个在Windows服务器上运行的Windows服务。该服务的目的是在本地系统上运行批处理文件,该文件进一步运行基于Java的线程。问题是,当我使用远程会话登录服务器时,服务正常启动,但批处理文件和Java线程都在后台运行,但是当我在不使用远程会话的情况下登录到服务器时,即物理上在服务器所在的位置,出现Java线程和批处理文件窗口。我的问题是当我使用远程会话登录服务器时,如何防止批处理文件和Java线程在后台运行。运行批处理文件的代码附加在下面:
public void RunBatchFile()
{
while (!this.isStopped)
{
while (StartnStop)
{
foreach (object element in apps)
{
App_arr chkapp = (App_arr)element;
System.DateTime now_date = System.DateTime.Now;
System.DateTime last_date = new System.DateTime(chkapp.last_time.Year, chkapp.last_time.Month, chkapp.last_time.Day, chkapp.last_time.Hour, chkapp.last_time.Minute, chkapp.last_time.Second);
System.TimeSpan time_span = now_date.Subtract(last_date);
if (time_span.Minutes >= chkapp.mins)
{
try
{
p = new Process();
string targetDir = string.Format(@chkapp.app_path.ToString().Substring(0, chkapp.app_path.ToString().LastIndexOf("\\")));
p.StartInfo.WorkingDirectory = targetDir;
string batch_file_name = chkapp.app_path.ToString().Substring(chkapp.app_path.ToString().LastIndexOf("\\") + 1);
p.StartInfo.FileName = batch_file_name;
p.StartInfo.Arguments = string.Format("C-Sharp CTF-Service Application");
p.StartInfo.CreateNoWindow = false;
//p.StartInfo.WindowStyle = ProcessWindowStyle.Maximized;
p.Start();
}
catch (Win32Exception ex1)
{
log.WriteEntry(ex1.Message + "\n" + ex1.StackTrace, EventLogEntryType.Error);
sw.BaseStream.Seek(0, SeekOrigin.End);
sw.WriteLine(ex1.Message);
sw.Flush();
}
}
}
Thread.Sleep(40000);
}
}
fs.Close();
}
答案 0 :(得分:0)