How to run an exe as admin using os module (Windows)?
I want to make an app that launches different exe's but I have a problem, one app requires to run as admin, so my question is how can I run that app as admin from a python script?
Solution
I used the elevate module in python! That worked! Thanks anyway!