远程获取已安装程序列表时找不到任何实例

时间:2015-04-29 18:05:17

标签: windows command-prompt wmic working-remotely

所以每次我运行我的批处理文件时,输入计算机名称,然后键入我要查找的程序。我添加了“name like'(word)%'”部分,因此它不需要完全匹配来查找程序。这是我的代码:

@echo off
set /p name="Enter PC Name: "
set /p prgm="Type Part of the Program Name: "
wmic /node:%name% product where "name like '%prgm%%'" get name,version
set /p fprgm="Enter Full Program Name: "
wmic /node:%name% product where name="%fprgm%" call uninstall
pause

我不确定最新情况,因为如果我手动进入WMIC并使用/node:(pc-name) product where "name like '(word)%'" get name,version进行搜索,那就可以了。

0 个答案:

没有答案