Skip to main content

How to get a list of software's that are installed on your PC.

Every day we spend our time by chatting or talking with our friends. During that conversation between you and your friend,your friend may ask you about the list of different types of software's that are installed on your computer.At that time you can you can give him the List of software that are residing on your PC by running a single command in Windows powershell. So lets see how to do this.
How to get a list of software's that are installed on your PC.

Steps:

1.Click on start button and type "windows powershell" or "powershell" and Run it with Administrative rights.
Run the Windows powershell with administrative rights.

2.Enter the below command in it and hit enter and wait for few seconds to see the list of software's on your computer as shown below.
 Get-WmiObject -Class Win32_Product | Select-Object -Property Name
Enter the above code and wait for few seconds
3. In order to export the list of software enter the below code in the powershell.
Get-WmiObject -Class Win32_Product | Select-Object -Property Name > C:/FFmpeg/a.txt
NOTE:In the above code change "C://FFmpeg/a.txt" to your desired location on the C drive.

Export the list by entering the above code.
4.Now browse to the path where the file has been saved and open it and you will see the list of software's as shown below.
List of software's that are there on your PC.
That's it friends i hope you enjoyed the article,if you have any queries feel free to ask through comments and have a nice day.

Comments

Popular posts from this blog

How to make an Installation file(setup file) using Iexpress.

Hi guys welcome to worldtech360. In this tutorial or article I  am going to show you how to create an installation file(setup file) for the .EXE file which you have created using an inbuilt option in windows 7 named ‘ iexpress ’. So let’s see how to do this. Note: You can also create an installation file for .bat file files or .VBS files or any other files which are executable. Steps: 1. Choose an .EXE file or any other file for which you want to create a setup file or installation file. In this I am going to use .VBS file 2. Open Run and type “ iexpress ” or “ iexpress.exe ” and hit enter. 3. After hitting enter, iexpress wizard window will popup. On the screen you will see two options i.e. “ create new self-extracting directive file ” and the other is “ open existing self-extracting directive file ”. I recommend you to choose the first option as you are going to create a self-extracting file and click next. 4. In the next window select “ Extract files on...

8 Important Tips to Protect Your Magento Store from Hacking

Protection of eCommerce and financial websites is necessary because these websites deal with monetary transactions and stand first as a victim in the list of cyber crime. Magento is the most popular eCommerce platform which also comes under threat of hacking by accessing unauthorized logins and other attacks. Magento Platform is rich in security features but security is needed on the admin level to protect it from cyber criminals. Here are some security tips that help you to protect your Magento store and keep your site safe: 1.Admin Path Customization: It is the first step you can take to keep your Magento site safe is to customize the admin path because the normal login pages and admin pages can easily be accessed by just hit and trial methods and it is very easy to navigate to admin page by hackers if the path remains unchanged. With the use of many hacking software available online, it is easy to guess user name and password combinations and these software can guess user n...

How to Create you own custom Chrome app-2 ways.

Google Chrome is the most common web browser which is used all around the world due to its speed and compatibility with our systems.As a result day by day new type of Apps and Extensions are released in to chrome web store.But have you ever tried to make one of your own App and Extension? If not in this tutorial i am gonna show you how to make your own Chrome app and Extension for you site or any other site with in Minutes using Manifest.json file.So let's see how to do this. Steps: 1.Create a New Folder any where on your Pc and name it as like " Worldtech360 chrome Apps " or " Chrome Apps and Extensions ".Now create a Sub folder and name it with your site. 2.Open the Sub folder which you have created and create a new " Text document ".Now we are going to convert this text document in to Manifest.json. 3.Open the Text document and copy the below code in it.   { "manifest_version": 2, "name": "Web site name...