我正在尝试使用power shell自动从系统中卸载程序/应用程序。当我第一次使用googled时,建议使用get-wmiobject,然后使用uninstall()函数。
我使用的代码:
$app = get-wmiobject -Class Win32_Product | where-object ($_Name -Like "part of product name"}
$app.uninstall()
错误讯息: 附加屏幕截图。
尝试解决方案:大多数博客都提到不以管理员身份运行就是导致问题的原因。但是,我尝试以管理员身份运行代码并仍然收到错误消息。任何帮助都会有用。
谢谢, Manoj Kumar