This commit is contained in:
Michael H.G. Schmidt 2022-12-27 20:21:29 +01:00
parent 12d13e8c60
commit 256be5c210
2 changed files with 2 additions and 11 deletions

View File

@ -3,11 +3,8 @@ set TOOLS=c:\tools
echo ####### %0 ####### echo ####### %0 #######
echo removing all tasks in the task scheduler ... echo Disabling all tasks in the task scheduler ...
schtasks /delete /TN * /F schtasks /change /TN "*" /DISABLE
echo deleting folders in the task scheduler ...
powershell -command %TOOLS%\scripts\cleanup-taskscheduler.ps1
echo ####### %0 ####### echo ####### %0 #######

View File

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