I have this problem: What I am trying to do: Uninstall program in Windows via cmd.
For that I need to go to cmd, enter wmic, and then call uninstall on specific program and exit.
How do I do that in Python? I mean the commands should be passed in specific order in one session, as the first one runs some program, and the other enters a command for that program. All I have been using so far are just single commands that could be executed by whatever cmd session, and now I'm stuck.
Thanks in advance!