我想创建一个可以列出远程PC上安装的所有应用程序的网页,然后我可以选择哪一个可以轻松卸载。我应该从哪里开始?有什么建议? 现在我只使用
psexec.exe -cd \ computername“path \ MsiZap.exe”TW {要删除的程序的GUID}
要卸载,但它只能从[程序和功能]中删除该条目,该软件仍在PC上。
答案 0 :(得分:2)
wmic /node:computername /user:adminuser /password:password /output:"path\to\index.html" product list /format:HTABLE
将生成一个很好的HTML页面,显示已安装的应用程序。
wmic /node:computername /user:adminuser /password:password product where name="name of program" call uninstall
将为程序调用卸载程序。
我留给你从A点到B点。:)
对于它的价值,我真诚地怀疑你是否能够从网页启动卸载程序,因为浏览器安全程序通常会在试图在查看器的计算机上运行命令的网页上皱眉。