Remove Cortana offline (Remove-AppxProvisionedPackage)

MikeyDK 1 Reputation point
2020-06-08T10:37:33.277+00:00

Hey

If I remove Cortana (Microsoft.549981C3F5F10_1.1911.21713.0_neutral_~_8wekyb3d8bbwe) using OSDBuilder (offline DISM) - and then install Windows 10 (2004) - the Cortana button and context menu is still there. (nothing happens when clicking on the Cortana button)

Anyone know why?

Windows 10 Setup
Windows 10 Setup
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Setup: The procedures involved in preparing a software program or application to operate within a computer or mobile device.
1,903 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Joy Qiao 4,886 Reputation points Microsoft Employee
    2020-06-09T05:38:37.593+00:00

    Hi,

    Open PowerShell as administrator runs the following command.

    Get-appxpackage (used for checking if Cortana exists in the computer)

    If it exists, try to uninstall it for all user accounts with the command line below.

    Get-appxpackage -allusers Microsoft.549981C3F5F10 | Remove-AppxPackage

    Bests,

    1 person found this answer helpful.

  2. T. Kujala 8,701 Reputation points
    2020-06-08T11:09:35.503+00:00

    I think you can easily disable it by using the Group Policy objects.

    Gpedit.msc

    Local Computer Policy --> Computer Configuration --> Administrative Templates --> Windows Components --> Search. Double-click the policy named Allow Cortana.

    Then select Disabled.

    If you remove it from the image, it comes back.

    0 comments No comments