14 lines
281 B
Batchfile
14 lines
281 B
Batchfile
@echo off
|
|
set TOOLS=c:\tools
|
|
|
|
echo ####### %0 #######
|
|
|
|
echo removing all tasks in the task scheduler ...
|
|
schtasks /delete /TN * /F
|
|
|
|
echo deleting folders in the task scheduler ...
|
|
powershell -command %TOOLS%\scripts\cleanup-taskscheduler.ps1
|
|
|
|
echo ####### %0 #######
|
|
|