This steps will show you How to List All Installed Programs on your PC using the command line interface.
Step 1: Firstly, open the command prompt and simply type the following commands and hit enter
‘wmic product get name’
which after a little while will display all the programs you have installed on your pc.\
E.g. C:\>wmic product get name
NB:This will display all installed applications on your PC
To store the list of applications in a file called programs.txt, type
E.g. C:\>wmic product get name > programs.txt
(This will create a file in the current directory and name it programs.txt which will contain a list of all your applications).
This next process also come in handy if you want to uninstall program using the command line interface. You can perform this using the following command without the double quote and hit enter
“wmic product where ‘name like %NAMEOFAPP%’ call uninstall /nointeractive”
E.g. C:\>wmic product where product ‘name like Bluestacks’ call uninstall /nointeractive
Also learn, Creating a golden crest logo in Photoshop
Related posts
Subscribe for newsletter
* You will receive the latest news and updates on your favorite topics!
How to Downgrade Flutter Version – FIXED
Learn how to downgrade your flutter version to a lower version, in this article we will reduce the flutter version…
Generate Resources for Android Playstore & iOS Apple Store Flutter
In this post, we’ll generate resources for the flutter app we created in the previous post. we’ll be learning how…
Build a Quiz App using Flutter for Android and iOS
In this post we’ll be working with Flutter, a fast-rising Developer tool built by Google to develop an Android App,…
Setup Flutter on Kali, Ubuntu, and any other Linux Distro
In this post, we’ll be learning how to set up your Flutter on Linux for development. Flutter is a fast-rising…
FIXED xcodebuild: Failed to load code for plug-in – Repeatedly Being Asked to Install Command Line Tools
Hey there, updating your MacOS Montery Xcode can be a pin in the a$$ especially when you got Xcode working…
How to Downgrade Flutter Version – FIXED
Learn how to downgrade your flutter version to a lower version, in this article we will reduce the flutter version…
Build a Quiz App using Flutter for Android and iOS
In this post we’ll be working with Flutter, a fast-rising Developer tool built by Google to develop an Android App,…
Setup Flutter on Kali, Ubuntu, and any other Linux Distro
In this post, we’ll be learning how to set up your Flutter on Linux for development. Flutter is a fast-rising…