This commit is contained in:
Michael H.G. Schmidt 2022-12-27 19:54:32 +01:00
parent 59ea1f0f38
commit 12d13e8c60
5 changed files with 13 additions and 9 deletions

View File

@ -246,9 +246,11 @@ echo.
rem ... remove stupid public folders
call cleanup-publicdir.cmd
echo.
rem ... remove ALL tasks from the scheduler
call cleanup-taskscheduler.cmd
echo.
date /t
time /t

View File

@ -1,19 +1,13 @@
@echo off
set TOOLS=c:\tools
echo ####### %0 #######
echo removing all tasks in the task scheduler ...
rem using a command ...
schtasks /delete /TN * /F
rem file system ...
rd /S /Q %SystemRoot%\system32\Tasks
mkdir %SystemRoot%\system32\Tasks
rem regsitry ...
reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\TaskCache\Tasks" /f
reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\TaskCache\Tree\Microsoft" /f
echo deleting folders in the task scheduler ...
powershell -command %TOOLS%\scripts\cleanup-taskscheduler.ps1
echo ####### %0 #######

View File

@ -0,0 +1,6 @@
$scheduleObject = New-Object -ComObject Schedule.Service
$scheduleObject.connect()
$rootFolder = $scheduleObject.GetFolder("\")
$rootFolder.DeleteFolder("\Microsoft",$null)

View File

@ -1,4 +1,5 @@
@echo off
set TOOLS=c:\tools
echo ####### %0 #######

View File

@ -1,4 +1,5 @@
@echo off
set TOOLS=c:\tools
echo ####### %0 #######