3e779be6f3
CI / lint (push) Failing after 13m4s
CI / test (3.11, ubuntu-latest) (push) Failing after 2m4s
CI / test (3.13, ubuntu-latest) (push) Successful in 13m30s
CI / test (3.14, ubuntu-latest) (push) Successful in 17m21s
CI / test (3.12, ubuntu-latest) (push) Successful in 17m55s
CI / discover-apps-ps (push) Successful in 1m56s
CI / test (3.9, ubuntu-latest) (push) Successful in 13m17s
CI / test (3.10, ubuntu-latest) (push) Successful in 26m21s
CI / audit (push) Successful in 13m38s
Deploy site / deploy (push) Has been cancelled
CI / test (3.14, ubuntu-24.04-arm) (push) Has been cancelled
32 lines
1.6 KiB
PowerShell
32 lines
1.6 KiB
PowerShell
# SPDX-License-Identifier: MIT
|
|
# winpodx debloat UNDO: re-enable the scheduled tasks disabled by apply.
|
|
|
|
$tasks = @(
|
|
"\Microsoft\Office\OfficeTelemetryAgentFallBack2016",
|
|
"\Microsoft\Office\OfficeTelemetryAgentLogOn2016",
|
|
"\Microsoft\Windows\Application Experience\AitAgent",
|
|
"\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser",
|
|
"\Microsoft\Windows\Application Experience\ProgramDataUpdater",
|
|
"\Microsoft\Windows\Application Experience\ProgramInventoryUpdater",
|
|
"\Microsoft\Windows\Autochk\Proxy",
|
|
"\Microsoft\Windows\Customer Experience Improvement Program\BthSQM",
|
|
"\Microsoft\Windows\Customer Experience Improvement Program\Consolidator",
|
|
"\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask",
|
|
"\Microsoft\Windows\Customer Experience Improvement Program\UsbCeip",
|
|
"\Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector",
|
|
"\Microsoft\Windows\Feedback\Siuf\DmClient",
|
|
"\Microsoft\Windows\Feedback\Siuf\DmClientOnScenarioDownload",
|
|
"\Microsoft\Windows\Maps\MapsToastTask",
|
|
"\Microsoft\Windows\Maps\MapsUpdateTask",
|
|
"\Microsoft\Windows\PI\Sqm-Tasks",
|
|
"\Microsoft\Windows\RetailDemo\CleanupOfflineContent",
|
|
"\Microsoft\Windows\Windows Error Reporting\QueueReporting",
|
|
"\Microsoft\Windows\WindowsAI\Copilot\CopilotDataCollectionTask",
|
|
"\Microsoft\Windows\WindowsAI\Insights\InsightsDataCollectionTask"
|
|
)
|
|
|
|
foreach ($task in $tasks) {
|
|
Write-Host "[scheduled_tasks] Re-enabling $task"
|
|
schtasks /Change /TN $task /Enable 2>$null | Out-Null
|
|
}
|