tiny11builder
tiny11builder copied to clipboard
Enabling/disabling telemetry
Just briefly asking, is this still a planned feature, or is this feature still too complicated to see the light soon?
Thanks.
To be implemented.
Perhaps something like this?
# Requires administrative privileges
# Stop and disable Diagnostics Tracking Service
Stop-Service diagtrack
Set-Service diagtrack -StartupType Disabled
# Set Telemetry level to 0 (Security) via Registry
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "AllowTelemetry" -Value 0
# Disable Connected User Experiences and Telemetry Service
Stop-Service dmwappushservice
Set-Service dmwappushservice -StartupType Disabled
# Disable various scheduled tasks related to telemetry
$tasks = @(
"\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser",
"\Microsoft\Windows\Application Experience\ProgramDataUpdater",
"\Microsoft\Windows\Autochk\Proxy",
"\Microsoft\Windows\Customer Experience Improvement Program\Consolidator",
"\Microsoft\Windows\Customer Experience Improvement Program\UsbCeip",
"\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask"
)
foreach ($task in $tasks) {
Disable-ScheduledTask -TaskName $task -ErrorAction SilentlyContinue
}
Write-Host "Telemetry services and tasks have been disabled."
Now added in the latest release!