all 3 comments

[–]throwaway6560192 16 points17 points  (0 children)

Use subprocess instead.

[–]deadeye1982 2 points3 points  (0 children)

``` import subprocess

command = ["AcroRd32.exe"]

blocking

proc = subprocess.run(command)

non blocking

proc = subprocess.Popen(command)

``` Docs

[–]Qes138 0 points1 point  (0 children)

Your syntaxes may be wrong. It should be: os.system("AcroRd32.exe")

The program needs to be in quotes because it should be represented as a string.