How to Uninstall People App from Windows 10
The Windows 10 People app keeps a list of contacts. Although the People app offers a great experience for most users, it's not for everyone. Luckily, you can use the PowerShell to uninstall the People app in Windows 10.
In this article, I’ll show you how to uninstall this app entirely.
1. In the Cortana search bar, search for Windows PowerShell.
2. Right click the correct result and select Run as administrator.
3. Type the following command to uninstall People app, and then press Enter.
If you get an error uninstalling, you’re either not running Windows PowerShell as an administrator, or you’ve incorrectly typed in the command from Step 3.
In this article, I’ll show you how to uninstall this app entirely.
1. In the Cortana search bar, search for Windows PowerShell.
2. Right click the correct result and select Run as administrator.
3. Type the following command to uninstall People app, and then press Enter.
Code:
Get-AppxPackage *people* | Remove-AppxPackage
If you get an error uninstalling, you’re either not running Windows PowerShell as an administrator, or you’ve incorrectly typed in the command from Step 3.