I'm using Spyder as an IDE on Windows 10 and I've been searching for python programs that will uninstall particular applications upon execution. So far, I have found a couple of sources:
- Stackoverflow: The wmic command does not seem to be recognized by Spyder and returns an invalid syntax error.
- Winapps: Except the list applications command none of the other functions return any values. I tried the following code but to no avail:
for app in winapps.search_installed('[app_name]'):
print(app)
winapps.uninstall('[app_name]', args=['/S'])
Are there any other modules and/or methods I can use to uninstall applications on my system?