views:

75

answers:

1

How can I minimize Microsoft Speech Recognition:

the one on the top

using C# or python?

+1  A: 

For C#:

Using System.Diagnostics.Process you can select the process when it's running. From there you can get the MainWindow Handle at .MainWindowHandle and then call the windows API to minimize the application.

Unfortunately I do not know the specifics for that call, you'd have to google it.

Aren
This should only work if the process has been started via `Process.Start()`.
0xA3
You sure, I was certain you could locate existing processes with the `Process` class. I.e: `Process.GetProcessesByName(string)` which gets a list of processes by name, or by `Process.GetProcesses()` which gets all processes on the local computer.
Aren