我的机器上安装了一个名为FEKO的程序。我想在命令提示符下使用wmic命令卸载它。
但是当我运行该命令时,它似乎没有卸载它。我验证了我的系统上是否安装了FEKO。问题出在哪里?
C:\Users\me>wmic product where "Name like '%FEKO%'" call uninstall
Executing (\\ME\ROOT\CIMV2:Win32_Product.IdentifyingNumber="{90D43EF1-D5A0-4F66- AB0D-200965758308}",Name="FEKO Suite",Version="6.2")->Uninstall()
Method execution successful.
Out Parameters:
instance of __PARAMETERS
{
ReturnValue = 1603;
};发布于 2015-09-17 20:53:07
wmic只会卸载通过Windows Installer安装的程序。
有关前进的方法,请参阅WMI "installed" query different from add/remove programs list?。
https://stackoverflow.com/questions/20252966
复制相似问题