Menu

How to uninstall an application from Microsoft store in Windows 10

This tutorial is for those users who are using Microsoft store and directly installing application from store in their Windows machine.
When you open the installed section of Microsoft store, where you could find all the installed applications and software in your Microsoft store. But here you will not find the option to uninstall an application.

Now you have an app installed, which you are not using from long back or no more beneficial for you, hence decided to uninstall from your machine. Then from where you will uninstall that application, so it may free your system memory and clean your Microsoft store? 

In this article we will let you know how to remove or uninstall an application from windows 10. Below are steps which you need to follow to uninstall an application from Microsoft store in windows 10.

Step 1: Open Microsoft store from your Windows machine and click on the installed tab to check what all applications are installed in your machine. below is the screenshot.

microsoft-store-installed
Microsoft store installed tab


Step 2: Press start/window button and search for settings 


windows-settings
Search settings

Step 3: Open settings, when you will click on the settings it will open a new window like below. From this setting dashboard click on the Apps as highlighted.

settings-dashboard
settings dashboard
Step 4: This Apps will open a new screen to you. Below is the screenshot. On this screen, from search box search the application which you want to uninstall.

Apps-and-feature-uninstall-an-app
Apps and feature screen in windows 10
Step 5: When you find the application which you want to remove, then click on the application and click on the uninstall button.

uninstall-an-application-from-windows10
uninstall an application from windows 10

You have successfully uninstalled application from your machine.

Wo Shaks MUSALMAN Tha

Mili AAZADI Jisse Wo Shaks MUSALMAN Tha,
Diya HIND Ko TAJ MAHAL Wo Shaks bhi MUSALMAN Tha,

Aaj Kehti He Duniya Ke DEHSATGARD He MUSALMAN,
Tha GANDHIJI Ne Apnaya KIRDAR jiska Wo Shaks MUSALMAN Tha,

Lagta He Duniya Wale TIPU SULATAN Ko Bhul Gaye,
Shuru Ki Jisne JUNG E AAZADI Wo Shaks MUSALMAN Tha,

Jaha Lehrata He TIRANGA Aaj Bhi Badi SHAAN Se,
Kiya Ta'amir Jisne LAAL QILLA Wo Shaks MUSALMAN Tha,

SAARE JAHAAN SE ACCHA HINDUSTAN HAMARA,
Likha Jisne TARANA-E-HIND Wo Shaks MUSALMAN Tha.

- by Unknown 

How to find the PID using port number

What will you do if you don't know which program and service is registered and running on a port number?
Here we have a simple way to find that, which service and task is registered on a port number in just a few steps.
For example if you wants to check for the port number 4502, which service is running on this port, then first you have to find the PID(processing ID) associated with that port number. to do so follow the following steps:
  1. Open Command prompt(cmd) in your windows machine. Go to start and search for cmd. 
  2. Then copy the below command and paste in cmd window and hit enter.
  3. netstat -aon | findstr "<port number>"
  4. It will give you the result which have following:
    1. TCP: This contains the IP with port number.
    2. IP address: IP address which is serving and consuming this serving.
    3. Listening: Process ID(PID) associated with this port number.

Below is the screenshot:

How to find PID using port number in windows
How to find PID using port number in windows


Now follow my next blog to find the service or task using PID.