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 its not possible, I would settle for even a function that would allow for a program to be opened with python in a minimized state like "wsMinimize d" from Delphi, something like this:
Any ideas?
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 its not possible, I would settle for even a function that would allow for a program to be opened with python in a minimized state like "wsMinimize d" from Delphi, something like this:
Code:
import subprocess
def startProgram():
subrpocess.minimize(subprocess.Popen('C:\test.exe')) # I know this is wrong but you get the idea...
startProgram()
Comment