c# windows服务中启动进程

现在需要在一个windows服务中判断程序是否运行,如果不在运行,就要重启这个进程,


尝试了Process的方法:

Process pro = new Process();
            string batPath = "D:\\run.bat";
            FileInfo file = new FileInfo(batPath);
            pro.StartInfo.WorkingDirectory = file.Directory.FullName;
            pro.StartInfo.FileName = batPath;
            pro.StartInfo.CreateNoWindow = false;
            pro.Start();

和StartAppUtil的方法:

StartAppUtil.StartApplication(@"D:\test.ext");

发现都有问题。


在网上找到了一个 Cjwdev.WindowsApi 的方法很好用,
首先下载 Cjwdev.WindowsApi.dll ,引入到项目中,

try 
           {

               string appStartPath = filePath;
               IntPtr userTokenHandle = IntPtr.Zero; 
               ApiDefinitions.WTSQueryUserToken(ApiDefinitions.WTSGetActiveConsoleSessionId(), ref userTokenHandle);

               ApiDefinitions.PROCESS_INFORMATION procInfo = new ApiDefinitions.PROCESS_INFORMATION(); 
               ApiDefinitions.STARTUPINFO startInfo = new ApiDefinitions.STARTUPINFO(); 
               startInfo.cb = (uint)Marshal.SizeOf(startInfo);

               ApiDefinitions.CreateProcessAsUser( 
                   userTokenHandle, 
                   appStartPath, 
                   "", 
                   IntPtr.Zero, 
                   IntPtr.Zero, 
                   false, 
                   0, 
                   IntPtr.Zero, 
                   null, 
                   ref startInfo, 
                   out procInfo);

               if (userTokenHandle != IntPtr.Zero)
                   ApiDefinitions.CloseHandle(userTokenHandle);

               int _currentAquariusProcessId = (int)procInfo.dwProcessId; 
           } 
           catch (Exception ex) 
           { 
           }

传入进程的执行文件filePath 就可以启动这个进程了。



评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值