瀏覽代碼

Created Enable Cortana File

This contains the code from the EnableCortana Function.
Richard Newton 6 年之前
父節點
當前提交
f38866cf59
共有 1 個文件被更改,包括 17 次插入0 次删除
  1. 17 0
      Individual Scripts/Enable Cortana

+ 17 - 0
Individual Scripts/Enable Cortana

@@ -0,0 +1,17 @@
+Write-Host "Re-enabling Cortana"
+    $Cortana1 = "HKCU:\SOFTWARE\Microsoft\Personalization\Settings"
+    $Cortana2 = "HKCU:\SOFTWARE\Microsoft\InputPersonalization"
+    $Cortana3 = "HKCU:\SOFTWARE\Microsoft\InputPersonalization\TrainedDataStore"
+	If (!(Test-Path $Cortana1)) {
+		New-Item $Cortana1
+	}
+	Set-ItemProperty $Cortana1 AcceptedPrivacyPolicy -Value 1 
+	If (!(Test-Path $Cortana2)) {
+		New-Item $Cortana2
+	}
+	Set-ItemProperty $Cortana2 RestrictImplicitTextCollection -Value 0 
+	Set-ItemProperty $Cortana2 RestrictImplicitInkCollection -Value 0 
+	If (!(Test-Path $Cortana3)) {
+		New-Item $Cortana3
+	}
+	Set-ItemProperty $Cortana3 HarvestContacts -Value 1