disable/remove chrome and onedrive update tasks

This commit is contained in:
Michael H.G. Schmidt 2023-03-12 11:25:14 +01:00
parent 0917244f17
commit 831d09ac1a

View File

@ -460,6 +460,14 @@ taskkill /f /im chrome.exe /FI "USERNAME eq %USERNAME%" 2>nul
rd /S /Q %USERPROFILE%"\AppData\Local\Google\Chrome\User Data\Default\Cache" 2>nul
del /F /Q %USERPROFILE%"\AppData\Local\Google\Chrome\User Data\Default\History*" 2>nul
rem - sigh - this zombie (chrome) keeps coming back ...
echo Disabling chrome update tasks ...
powershell -Command "Get-ScheduledTask | where TaskName -like 'Google*' | Disable-ScheduledTask"
rem same with OneDrive. This little sucker keeps coming back ...
echo removing OneDrive update task ...
powershell -Command "Get-ScheduledTask | Where-Object {$_.Taskname -match 'OneDrive Standalone Update'} | Unregister-ScheduledTask -Confirm:$false"
echo.
echo Other tasks and fixes for the user
echo ########################################