wmic 使用批处理文件卸载
wmic uninstall using batch file
我正在编写批处理文件以使用 cmd 卸载 McAfee Endpoint Security Web Control。我正在利用 WMIC 来执行此操作。当我 运行 脚本时,它在 wMIC 命令为 运行 后立即停止。当 运行 它手动在 cmd
中一切正常
wmic product where name=”McAfee Endpoint Security Web Control” call uninstall /nointeractive
我的脚本
@Echo Off
Title McAfee Endpoint Security Web Control
Echo Remove McAfee Endpoint Security Web Control
WMIC product where name=”McAfee Endpoint Security Web Control” call uninstall /nointeractive`
这会报错
Endpoint - Invalid alias verb
请提出更正建议。
请复制粘贴,按原样试一试。
@echo Off
title "McAfee Endpoint Security Web Control"
echo Removing McAfee Endpoint Security Web Control
WMIC product where name="McAfee Endpoint Security Web Control" call uninstall /nointeractive
我正在编写批处理文件以使用 cmd 卸载 McAfee Endpoint Security Web Control。我正在利用 WMIC 来执行此操作。当我 运行 脚本时,它在 wMIC 命令为 运行 后立即停止。当 运行 它手动在 cmd
中一切正常wmic product where name=”McAfee Endpoint Security Web Control” call uninstall /nointeractive
我的脚本
@Echo Off
Title McAfee Endpoint Security Web Control
Echo Remove McAfee Endpoint Security Web Control
WMIC product where name=”McAfee Endpoint Security Web Control” call uninstall /nointeractive`
这会报错
Endpoint - Invalid alias verb
请提出更正建议。
请复制粘贴,按原样试一试。
@echo Off
title "McAfee Endpoint Security Web Control"
echo Removing McAfee Endpoint Security Web Control
WMIC product where name="McAfee Endpoint Security Web Control" call uninstall /nointeractive