I'm trying to run any one of these in Python...
subprocess.call(r"C:\Windows\System32\fsquirt.exe", shell=True)
subprocess.call("C:\\Windows\\System32\\fsquirt.exe", shell=True)
subprocess.call(r"C:/Windows/System32/fsquirt.exe", shell=True)
subprocess.call("C:/Windows/System32/fsquirt.exe", shell=True)
They all result in...
'C:/Windows/System32/fsquirt.exe' is not recognized as an internal or external command,
operable program or batch file.
If I just copy fsquirt.exe into the local directory I can call it from there, so I'm sure I must just be doing something noob-ish with how I'm using directories.
How should I do this?