moved tasks scheduler deletions to admin section
This commit is contained in:
parent
d8257838a9
commit
dcfcfcfc76
@ -388,6 +388,14 @@ if %ERRORLEVEL% == 0 (
|
|||||||
icacls "%STARTMENU_PUBLIC%\Administrative Tools\*" /grant Users:R 1>nul
|
icacls "%STARTMENU_PUBLIC%\Administrative Tools\*" /grant Users:R 1>nul
|
||||||
icacls "%STARTMENU_PUBLIC%\Accessories\*" /grant Users:R 1>nul
|
icacls "%STARTMENU_PUBLIC%\Accessories\*" /grant Users:R 1>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"
|
||||||
|
|
||||||
) else (
|
) else (
|
||||||
|
|
||||||
rem ===========
|
rem ===========
|
||||||
@ -460,14 +468,6 @@ 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
|
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
|
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.
|
||||||
echo Other tasks and fixes for the user
|
echo Other tasks and fixes for the user
|
||||||
echo ########################################
|
echo ########################################
|
||||||
|
Loading…
Reference in New Issue
Block a user