我正在编写一个批处理文件,以使用cmd卸载McAfee Endpoint Security Web控件。我正在利用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`
这给出了错误
端点-无效的别名动词
请建议更正。
答案 0 :(得分:0)
请复制并粘贴,并按原样进行操作。
@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