Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security, Veeam & DevOps

  • Home
  • About
  • Advertise With US
  • Reviews
  • Tech News
  • Contact
  • Toggle search form

How to uninstall Applications with PowerShell Script

Posted on 10/03/201817/08/2026 IT Expert By IT Expert No Comments on How to uninstall Applications with PowerShell Script
  1. Home
  2. Scripts
  3. How to uninstall Applications with PowerShell Script
uninstalling software

In this article, we will discuss how to uninstall Applications with PowerShell Script. In the realm of software management, harnessing the capabilities of PowerShell Script can be a game-changer. Please see How to remove WDS role via the GUI and PowerShell, how to Upgrade Microsoft Office 2019 to 2021 on Mac, and How to uninstall Microsoft SQL Server on Windows. However, When it comes to the task of application uninstallation, PowerShell Script emerges as a powerful ally.

Nonetheless, with command-line prowess and automation, it efficiently removes unwanted applications from your system. Whether a tech enthusiast or an IT professional, mastering app removal through PowerShell Script enhances system maintenance.

Also, see “Remove Office license file: How do you change the account that Office says it belongs to on a Mac“, and “How to install and update PowerShell version 7 on Windows and Linux“.

PowerShell Script for App removal

This is the simple command to execute this task. This command retrieves the installed application named “Software Name” using the Win32_Product class and then uninstalls it. It first searches for the application by matching its name and, once found, executes the uninstall method to remove it from the system.

$app = Get-WmiObject -Class Win32_Product | Where-Object {
$_.Name -match "Software Name"
}
$app.Uninstall()

Do not forget to replace the “Software Name” with your application name. Copy the above syntax to a text editor, e.g, notepad.

Please see how to How to uninstall installed Windows Update from Windows, and how to fix “Cross Domain Folders Access: Reference account is Locked out“.

Remove App

EmEditor is the application to uninstall. Execute it across multiple servers using AWS run command, avoiding restarts.

Screenshot of a code editor displaying a programming script with a highlighted line.

Open the PowerShell console and run the file from the location it is saved and run it. The below is the result that will be displayed

A screenshot of a Windows PowerShell interface displaying command line inputs and outputs, including various system variables and paths.

I hope you found this blog post on how to uninstall Applications with PowerShell Script helpful. If you have any questions, please let me know in the comment session.

5/5 - (1 vote)

Thank you for reading this post. Kindly share it with others.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Threads (Opens in new window) Threads
  • Share on Nextdoor (Opens in new window) Nextdoor
Scripts Tags:Microsoft Windows, PowerShell

Post navigation

Previous Post: Configure WSUS Email Notification for Office365
Next Post: How to reset MySQL Root password

Related Posts

  • AzureCloudShell
    Provisioning Azure Resources using Azure Az PowerShell Cmdlet from Cloud Shell AWS/Azure/OpenShift
  • sdfgh
    Get a list of installed applications on Windows Scripts
  • powershell01 1
    Create a self-signed certificate and export it in PFX format via PowerShell [Part 1] Scripts
  • WinReg
    Unable to import Windows Reg File: The specified file is not a registry script Scripts
  • powershell commands lede 1024x276 1
    Enable WinRM on Windows Servers and Windows PCs Scripts
  • PowerShell Module Must be set to Remote Signed e1779570167985
    Veeam Backup and Replication: PowerShell must be Remote Signed Backup

More Related Articles

AzureCloudShell Provisioning Azure Resources using Azure Az PowerShell Cmdlet from Cloud Shell AWS/Azure/OpenShift
sdfgh Get a list of installed applications on Windows Scripts
powershell01 1 Create a self-signed certificate and export it in PFX format via PowerShell [Part 1] Scripts
WinReg Unable to import Windows Reg File: The specified file is not a registry script Scripts
powershell commands lede 1024x276 1 Enable WinRM on Windows Servers and Windows PCs Scripts
PowerShell Module Must be set to Remote Signed e1779570167985 Veeam Backup and Replication: PowerShell must be Remote Signed Backup

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

Veeam Vanguard

  • git default branch min
    Git config –global init.defaultBranch: Error cannot lock ref ‘refs/remotes/origin/windows’, not a directory Version Control System
  • Screenshot 2022 03 21 at 18.06.30
    How to Configure Virtual Host for Apache HTTP Web Server to Host Several Domains on Ubuntu 20.04 LTS Linux
  • Recovery keys in AD 1
    Backup existing and new BitLocker Recovery Keys to Active Directory Windows Server
  • MacOS Catalina Desktop
    Mac FileVault Encryption: How to enable FileVault disk encryption Security | Vulnerability Scans and Assessment
  • Featured image Audioissue
    How to Fix Audio Services Not Responding on Windows 10 and 11 Windows
  • VMware
    How to install Windows Server 2022 on VMware Workstation Virtualization
  • sonarlite
    How to Setup SonarLint in VS Code for Your App Project Configuration Management Tool
  • Schedule and join Teams Meeting
    How to schedule and join meetings with Microsoft Teams JIRA|Confluence|Apps

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,762 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

Active Directory Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2026 TechDirectArchive

Loading Comments...

You must be logged in to post a comment.