Skip to content

Instantly share code, notes, and snippets.

@h0ru5
Created September 5, 2015 16:20
Show Gist options
  • Select an option

  • Save h0ru5/5d5bf9c3c14a3d1ef9d4 to your computer and use it in GitHub Desktop.

Select an option

Save h0ru5/5d5bf9c3c14a3d1ef9d4 to your computer and use it in GitHub Desktop.
REM aus i'X 9/15: https://www.heise.de/artikel-archiv/ix/2015/09/092_Nicht-waehlerisch
REM *** Telemetry & Data Collection abstellen ***
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Device Metadata" /v PreventDeviceMetadataFromNetwork /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v "AllowTelemetry" /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\MRT" /v DontOfferThroughWUAU /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\SQMClient\Windows" /v "CEIPEnable" /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v "AITEnable" /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v "DisableUAR" /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t REG_DWORD /d 0 /f
REM *** Cortana abstellen ***
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment