.
This commit is contained in:
parent
59ea1f0f38
commit
12d13e8c60
@ -246,9 +246,11 @@ echo.
|
|||||||
|
|
||||||
rem ... remove stupid public folders
|
rem ... remove stupid public folders
|
||||||
call cleanup-publicdir.cmd
|
call cleanup-publicdir.cmd
|
||||||
|
echo.
|
||||||
|
|
||||||
rem ... remove ALL tasks from the scheduler
|
rem ... remove ALL tasks from the scheduler
|
||||||
call cleanup-taskscheduler.cmd
|
call cleanup-taskscheduler.cmd
|
||||||
|
echo.
|
||||||
|
|
||||||
date /t
|
date /t
|
||||||
time /t
|
time /t
|
||||||
|
@ -1,19 +1,13 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
set TOOLS=c:\tools
|
||||||
|
|
||||||
echo ####### %0 #######
|
echo ####### %0 #######
|
||||||
|
|
||||||
echo removing all tasks in the task scheduler ...
|
echo removing all tasks in the task scheduler ...
|
||||||
|
|
||||||
rem using a command ...
|
|
||||||
schtasks /delete /TN * /F
|
schtasks /delete /TN * /F
|
||||||
|
|
||||||
rem file system ...
|
echo deleting folders in the task scheduler ...
|
||||||
rd /S /Q %SystemRoot%\system32\Tasks
|
powershell -command %TOOLS%\scripts\cleanup-taskscheduler.ps1
|
||||||
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 ####### %0 #######
|
echo ####### %0 #######
|
||||||
|
|
||||||
|
6
scripts/cleanup-taskscheduler.ps1
Normal file
6
scripts/cleanup-taskscheduler.ps1
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
$scheduleObject = New-Object -ComObject Schedule.Service
|
||||||
|
$scheduleObject.connect()
|
||||||
|
$rootFolder = $scheduleObject.GetFolder("\")
|
||||||
|
$rootFolder.DeleteFolder("\Microsoft",$null)
|
||||||
|
|
@ -1,4 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
set TOOLS=c:\tools
|
||||||
|
|
||||||
echo ####### %0 #######
|
echo ####### %0 #######
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
set TOOLS=c:\tools
|
||||||
|
|
||||||
echo ####### %0 #######
|
echo ####### %0 #######
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user