Overblog
Editer l'article Suivre ce blog Administration + Créer mon blog

[Windows 10] Disable cortana

Publié le par damcuvelier

    $path = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search"    
    IF(!(Test-Path -Path $path)) {
        New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows" -Name "Windows Search"
    }
    Set-ItemProperty -Path $path -Name "AllowCortana" -Value 0
    #Restart Explorer to change it immediately    
    Stop-Process -name explorer

Commenter cet article