Hi,
What I'm trying to do is to write a script which would open an application only in process list. Meaning it would be "hidden". I don't even know if its possible in python.
If not, there has to be a function would allow for a program to be opened with python in a minimized state like "wsMinimized" from Delphi, something like this:
import subprocess
def startProgram():
subrpocess.minimize(subprocess.Popen('C:\test.exe')) ??? I know this is wrong but you get the idea...
startProgram()
Any ideas?
Oh and the programs that i want to hide are the ones that don't have the option to be minimized into tray so that's sort of a compromise.