How to find the location of the Scheduled Tasks folder

前端 未结 6 1254

I have seen references online that state that \'Scheduled Tasks\' in Windows are stored in %SystemRoot%\\Tasks, which I think usually equates to C:\\Windo

6条回答
  •  独厮守ぢ
    2020-12-23 10:00

    Tasks are saved in filesystem AND registry

    Tasks are stored in 3 locations: 1 file system location and 2 registry locations.

    File system:

    C:\Windows\System32\Tasks
    

    Registry:

    HKLM\Software\Microsoft\Windows NT\CurrentVersion\Schedule\Taskcache\Tasks
    HKLM\Software\Microsoft\Windows NT\CurrentVersion\Schedule\Taskcache\Tree
    

    So, you need to delete a corrupted task in these 3 locations.

提交回复
热议问题