Hello! I have a problem with starting notepad.exe from windows service. It starts but i cant see any window. I can only see that it starts from windows task manager.
Thx for help. My source is:
-----------------------------
protected override void OnStart(string[] args)
{
Process notePad = new Process();
notePad.StartInfo.FileName = "notepad.exe";
notePad.Start();
}
Thx for help. My source is:
-----------------------------
protected override void OnStart(string[] args)
{
Process notePad = new Process();
notePad.StartInfo.FileName = "notepad.exe";
notePad.Start();
}