How to fully remove Cortana for current/all users

Configurare noua (How To)

Situatie

For those who want Cortana completely gone for all current and future users, PowerShell provides a more permanent solution. This method removes the Cortana app package at the system level and prevents it from being provisioned to new accounts. It’s more aggressive than simply uninstalling, so create a restore point or backup first in case you want to bring Cortana back later.

Caution: this removes the Cortana app package. Some deep OS integrations (search/indexing) may be affected. Create a restore point or full backup first.

Solutie

  1. Open Start → type Terminal, right-click → Run as administrator (or open PowerShell as Admin)
  2. Check whether the package exists: Get-AppxPackage -AllUsers Microsoft.549981C3F5F10
  3. If it shows up, remove it for all users: Get-AppxPackage -AllUsers Microsoft.549981C3F5F10 | Remove-AppxPackage
  4. (Optional — prevent it being reinstalled for new accounts) remove the provisioned package so new user profiles won’t get it: Get-AppxProvisionedPackage -Online |   Where-Object {$_.PackageName -like “*549981C3F5F10*”} |   Remove-AppxProvisionedPackage -Online
  5. Restart.

Tip solutie

Permanent

Voteaza

(0 din 0 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?