آخر نشاط 2 months ago

powershell script to disable telemetry in win10

scusi عدّل هذا المقطع 1 year ago. الانتقال إلى التعديل

لا توجد تغييرات

Florian Walther عدّل هذا المقطع 6 years ago. الانتقال إلى التعديل

1 file changed

DisableTelemetry.ps1 تم تغيير الاسم إلى disableTelemetry.ps1

تم تغيير اسم الملف بدون تغييرات

Florian Walther عدّل هذا المقطع 6 years ago. الانتقال إلى التعديل

1 file changed

win10_disable_telemetry.ps1 تم تغيير الاسم إلى DisableTelemetry.ps1

تم تغيير اسم الملف بدون تغييرات

Florian Walther عدّل هذا المقطع 6 years ago. الانتقال إلى التعديل

1 file changed, 13 insertions

win10_disable_telemetry.ps1(تم إنشاء الملف)

@@ -0,0 +1,13 @@
1 + # powershell script to disable telemetry in win10
2 + #
3 + # Source:
4 + # https://www.bsi.bund.de/SharedDocs/Downloads/DE/BSI/Cyber-Sicherheit/SiSyPHus/Analyse_Telemetriekomponente.pdf?__blob=publicationFile&v=3
5 +
6 + # run as admin
7 + if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs; exit }
8 +
9 + # Step 1: deactivate DiagTrack service
10 + Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\DiagTrack\ -name Start -Value 4
11 +
12 + # Step 2: deactivate Autologger-Diagtrack-Listener
13 + Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\WMI\Autologger\AutoLogger-Diagtrack-Listener\ -name Start -Value 0
أحدث أقدم