python automation windows code example
Example 1: how to create a python script to automate software installation?
import os
from pywinauto.application import Application as app
inst = app().start("C:\\Users\\Desktop\\sigplus.exe")
Example 2: python control windows gui
Use pywinauto module to control Windows gui
https://pywinauto.readthedocs.io/en/latest/
pip install -U pywinauto