How to Disable Cortana in Windows 10 using PowerShell

Cortana is included in Windows 10. (More information about Cortana: https://support.microsoft.com/en-us/help/17214/windows-10-what-is)

When creating a Windows 10 master image, you may want to disable it. You can disable Cortana using PowerShell with a registry key:

PS > New-Item -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\' -Name 'Windows Search' | Out-Null
PS > New-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search' -Name 'AllowCortana' -PropertyType DWORD -Value '0' | Out-Null

This transforms the Cortana box into a “Search Windows” box.

Note: you can also disable Cortana by GPO.

Navigate to:

  • Computer Configuration
  • > Administrative Templates
  • >> Windows Components
  • >>> Search.

Set the “Allow Cortana” option to “Disabled

 

Thanks for reading! You can follow me on Twitter @PrigentNico

About Nicolas 282 Articles
I work as an IT Production Manager, based in Paris (France) with a primary focus on Microsoft technologies. I have 10 years experience in administering Windows Servers. . I am a Microsoft MVP for Cloud & Datacenter Management. I also received the PowerShell Hero 2016 award by PowerShell.0rg. And finally, I am "MCSE: Cloud Platform and Infrastructure", "MCSA: Windows Servers", "Administering & Deploying SCCM", and CheckPoint CCSA certified.