use python3.10 winrm to run powershell script remotely, the start-process command can not start tsm.exe process, is some wrong in below code? could someone help me to check this ,thank you
ip_item='10.12.62.23'
ps_script_tsm="""
Start-Process -FilePath "c:\\tmp\\tsm.exe"
"""
win = winrm.Session(ip_item, auth=('Administrator', '123456'))
r = win.run_ps(ps_script_tsm)