I am trying to uninstall a program that shows in Programs and Features but is not found when I use the following:
$app=Get-WmiObject–ClassWin32_Product|Where-Object{$_.Name
-eq"Program
name"}
$app.Uninstall()
When I run:
Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Unintall\* | Select-Object Displayname, displayversion, publisher, installdate | format-table -Autosize
I can see the application in the list however there is no Publicher or Installdate, yet it is installed as confirmed by the Programs and Features window.
I am searching the Internet to see if someone has asked this questions. I found one but does not identify how to. Any help will be greatly appreciated.