'How do I know what python scripts are running in Windows?

As I mentioned above, is there a way to find out what python scripts are running in Windows?



Solution 1:[1]

This is what you need

import subprocess
p = subprocess.Popen(["powershell.exe", "get-wmiobject Win32_process -filter \"Name='python.exe'\"| foreach -process {$_.CommandLine}"], stdout=subprocess.PIPE)
out, err = p.communicate()
service = "file.py"
if service in str(out):
   print('Service Is Running')

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Soroosh Gholami