79276285

Date: 2024-12-12 19:04:58
Score: 2
Natty:
Report link

import subprocess

Path to the .exe file

exe_path = r"C:....\player.exe"

Start the .exe program in a detached process

subprocess.Popen([exe_path], creationflags=subprocess.CREATE_NEW_CONSOLE)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: MarkoP