Posts by marcusvtsilva • 1 point
2 posts
-
0
votes1
answer20
viewsA: How to query running applications in windows through python?
import psutil import json outlook = json.dumps({"name": "OUTLOOK.EXE"}) for proc in psutil.process_iter(['name']): #print(proc.info) input = json.dumps(proc.info) if input=outlook: print('Outlook…
functionanswered marcusvtsilva 1 -
-2
votes1
answer20
viewsQ: How to query running applications in windows through python?
my application is to create a program in python that identifies the software x or y is open on the operating system, or that returns me a list of software running on the operating system. I tried…
functionasked marcusvtsilva 1