我想通过调用 bat 文件来卸载软件。它必须是自动的,在卸载过程中无需输入任何参数。如何制作能够通过名称卸载软件的bat文件?
PS:我知道使用 WMI 的完美方法,但它需要用户输入:
WMIC
product where name="software" call uninstall
我想通过调用 bat 文件来卸载软件。它必须是自动的,在卸载过程中无需输入任何参数。如何制作能够通过名称卸载软件的bat文件?
PS:我知道使用 WMI 的完美方法,但它需要用户输入:
WMIC
product where name="software" call uninstall