<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://tech.uvoo.io/index.php?action=history&amp;feed=atom&amp;title=Uninstall_Windows_App_from_Powershell</id>
	<title>Uninstall Windows App from Powershell - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://tech.uvoo.io/index.php?action=history&amp;feed=atom&amp;title=Uninstall_Windows_App_from_Powershell"/>
	<link rel="alternate" type="text/html" href="https://tech.uvoo.io/index.php?title=Uninstall_Windows_App_from_Powershell&amp;action=history"/>
	<updated>2026-05-13T23:45:04Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.2</generator>
	<entry>
		<id>https://tech.uvoo.io/index.php?title=Uninstall_Windows_App_from_Powershell&amp;diff=1739&amp;oldid=prev</id>
		<title>Busk: Created page with &quot;# Uninstall App Using UninstallString ``` $search = 'myapp' $64bitnode = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall' $32bitnode = 'HKLM:\SOFTWARE\Wow6432Node\M...&quot;</title>
		<link rel="alternate" type="text/html" href="https://tech.uvoo.io/index.php?title=Uninstall_Windows_App_from_Powershell&amp;diff=1739&amp;oldid=prev"/>
		<updated>2021-05-23T01:54:59Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;# Uninstall App Using UninstallString ``` $search = &amp;#039;myapp&amp;#039; $64bitnode = &amp;#039;HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall&amp;#039; $32bitnode = &amp;#039;HKLM:\SOFTWARE\Wow6432Node\M...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;# Uninstall App Using UninstallString&lt;br /&gt;
```&lt;br /&gt;
$search = 'myapp'&lt;br /&gt;
$64bitnode = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall'&lt;br /&gt;
$32bitnode = 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall'&lt;br /&gt;
$Uninstaller = Get-ChildItem -Path $64bitnode,$32bitnode  | Get-ItemProperty | Where-Object {$_.DisplayName -match $search }&lt;br /&gt;
$Uninstaller | Select-Object -Property DisplayName, UninstallString&lt;br /&gt;
$Uninstaller | ForEach { Start-Process -FilePath MsiExec.exe -ArgumentList &amp;quot;/X$($PSItem.PSChildName) /Q&amp;quot; -Wait }&lt;br /&gt;
```&lt;br /&gt;
https://www.reddit.com/r/PowerShell/comments/7mn0u7/help_with_registry_query_for_uninstall_string/&lt;/div&gt;</summary>
		<author><name>Busk</name></author>
	</entry>
</feed>