.
This commit is contained in:
parent
59ea1f0f38
commit
12d13e8c60
@ -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
|
||||
|
@ -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 #######
|
||||
|
||||
|
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
|
||||
set TOOLS=c:\tools
|
||||
|
||||
echo ####### %0 #######
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
@echo off
|
||||
set TOOLS=c:\tools
|
||||
|
||||
echo ####### %0 #######
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user