我当前正在编写一个脚本,该脚本必须立即从许多计算机上卸载程序,唯一可以找到关于如何为此特定程序执行该操作的信息的地方是使用wmic
,但是每次我运行该机器命令时,进行硬重启。
有没有办法(使用wmic)来防止脚本在卸载程序包后重新启动?这是我当前正在使用的命令(在Windows 10上)
wmic product where name="<application name>" call uninstall /nointeractive
谢谢您的帮助
最佳答案
我找到了一个对我有用的解决方案,并希望Google能够为我带来与上述相同的结果,希望对您有所帮助。
echo product where name="APPLICATION NAME" call uninstall /nointeractive|wmic && shutdown /a
这样可以进行卸载,然后立即中止卸载计划的关闭/重新启动。
关于windows - 使用Wmic卸载软件包时防止重启,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42837736/