This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# requires python 3.6 or later | |
# run as elevated user (requires admin permission for reg delete) | |
# python uninstall.py "<DisplayName>" | |
# you will get to confirm matching apps before any uninstall takes place | |
import sys | |
import winreg | |
import subprocess | |
def get_matching_apps(filter_string): |
OlderNewer