gpt4 book ai didi

powershell - 使用PowerShell卸载ClickOnce应用程序?

转载 作者:行者123 更新时间:2023-12-04 19:17:30 24 4
gpt4 key购买 nike

是否可以使用Windows PowerShell卸载一次单击客户端应用程序?

Get-WmiObject Win32_Product-筛选器“名称='xxxx'”

当我在上面使用时,单击一次不会显示应用程序。但它可以与其他应用程序一起使用。 (获取没有过滤器的所有内容也不包含单击一次应用程序。但是在添加/删除程序UI中可见)。

请帮忙。

提前致谢。

最佳答案

读这个:

http://social.msdn.microsoft.com/Forums/en-US/winformssetup/thread/51a44139-2477-4ebb-8567-9189063cf340/

评论后编辑:

$InstalledApplicationNotMSI = Get-ChildItem HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall | foreach-object {Get-ItemProperty $_.PsPath}


$UninstallString = $InstalledApplicationNotMSI | ? { $_.displayname -eq "YourAppicationDisplayName" } | select uninstallstring


cmd /c $UninstallString.UninstallString

问题在于这不是无声的无规化。
您必须为sendkey()TAB + ENTER添加代码才能使其静音。

关于powershell - 使用PowerShell卸载ClickOnce应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7413001/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com