Compare commits

...

3 Commits

Author SHA1 Message Date
Teselka d87b427540
Block telemetry scheduled tasks (#310)
* Block telemetry scheduled tasks

* Fix typo
1 year ago
Alex Hirsch 553642cb80
Merge pull request #309 from Teselka/patch-1
Add default yandex music thirdparty package in the remove-default-apps
1 year ago
Teselka 349de09bac
Add default yandex music thirdparty package in the remove-default-apps 1 year ago

@ -240,3 +240,16 @@ $ips = @(
Remove-NetFirewallRule -DisplayName "Block Telemetry IPs" -ErrorAction SilentlyContinue
New-NetFirewallRule -DisplayName "Block Telemetry IPs" -Direction Outbound `
-Action Block -RemoteAddress ([string[]]$ips)
# Block scheduled telemetry tasks
# See reference: https://answers.microsoft.com/en-us/windows/forum/windows_10-performance/permanently-disabling-windows-compatibility/6bf71583-81b0-4a74-ae2e-8fd73305aad1
$tasks = @(
"\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser"
"\Microsoft\Windows\Application Experience\ProgramDataUpdater"
"\Microsoft\Windows\Application Experience\StartupAppTask"
"\Microsoft\Windows\Application Experience\PcaPatchDbTask"
)
foreach ($task in $tasks) {
Disable-ScheduledTask -TaskName $task
}

@ -115,6 +115,7 @@ $apps = @(
"king.com.BubbleWitch3Saga"
"king.com.CandyCrushSaga"
"king.com.CandyCrushSodaSaga"
"A025C540.Yandex.Music"
# apps which cannot be removed using Remove-AppxPackage
#"Microsoft.BioEnrollment"

Loading…
Cancel
Save