在编写windows服务时,想在服务中调用一个exe(.net编写),放置了一个timer
在timer1_Tick事件中
Process p = new Process();
            p.StartInfo.FileName = @"d:\test.exe";
            p.Start();
但服务启动后,还是没有见到此进程.protected override void OnStart(string[] args)
        {
            // TODO: Add code here to start your service.
            timer1.Enabled = true;        }