w10install/scripts/cleanup-taskscheduler.cmd

14 lines
281 B
Batchfile
Raw Normal View History

2022-12-27 17:15:05 +01:00
@echo off
2022-12-27 19:54:32 +01:00
set TOOLS=c:\tools
2022-12-27 17:15:05 +01:00
echo ####### %0 #######
echo removing all tasks in the task scheduler ...
schtasks /delete /TN * /F
2022-12-27 19:54:32 +01:00
echo deleting folders in the task scheduler ...
powershell -command %TOOLS%\scripts\cleanup-taskscheduler.ps1
2022-12-27 17:15:05 +01:00
echo ####### %0 #######