
Or if you use another antivirus software program, check their virus protection options. If you're trying to remove malware, see Stay protected with Windows Security to find out how to run a scan. If you get an error message when you're uninstalling, try the Program Install and Uninstall Troubleshooter. If you can't find an app or program, try the tips in See all your apps in Windows 10 and Program is not listed in add/remove programs after installation. Then follow the directions on the screen. Press and hold (or right-click) on the program you want to remove and select Uninstall or Uninstall/ Change. In the search box on the taskbar, type Control Panel and select it from the results. Uninstall from the Control Panel (for programs) Select the app you want to remove, and then select Uninstall. Select Start, then select Settings > Apps > Apps & features. Press and hold (or right-click) on the app, then select Uninstall.

Right click on that app/program and click Uninstall (if you do not see uninstall then it may be a default app). Find the app or program you wish to uninstall.

A much safer way is using the programs unique identifying number.īelow I run the cmdlet again to see if CoffeeCup Free FTP is listed and this time nothing is returned.Select Start and look for the app or program in the list shown. Follow the steps below and be aware that instructions for uninstalling the software will depend on the software itself and not Windows 10. If you want to be certain you are uninstalling the correct program then using just the name may not be the best method. $application = Get-WmiObject -Class Win32_Product -Filter "IdentifyingNumber = ''"

$application = Get-WmiObject -Class Win32_Product -Filter "Name = 'CoffeeCup Free FTP'" So long as it returns a ReturnValue of 0 its successful. To uninstall an application we simply need to save the WMI object and call. Get-WmiObject -Class Win32_Product -Filter "Name = 'CoffeeCup Free FTP'" Note this wont list any Windows Apps which are installed. Running this cmdlet will produce a list of all installed applications. Listing all installed programs, checking to see if a program is installed by its name and uninstalling programs is super easy and efficient using PowerShell and the Get-WmiObject cmdlet. Posted By in PowerShell, Software | 0 comments
