I'm coding a script using python to help me mange my open browser pages. I'm using the os.system("start ...") to open up chrome and I want it to open as a minimized program.
I noticed that I can't do this using the flag /min (I tried "start /min chrome www.google.com") not from the python script and also not from the command line itself or the RUN.
Does anyone know how to open up a minimized chrome window? Or maybe instead the command for minimizing an existing chrome window (I'll open it and than minimize it, hopefully it would be quick enough for me to notice)?
All I found is how to minimize the command line itself. The flag /min works perfectly fine when I'm using "start /min notepad" from the cmd. I'm using Windows XP operating system if it matters anyhow.
http://code.google.com/p/pywinauto/
might be helpful.
Based on its example, you can use "Minimize()" to do the job: