Where does task scheduler store its files in windows server 2008?
Asked
Active
Viewed 5.0k times
9
-
Sounds like a Server Fault question to me.... – Nov 26 '09 at 01:58
-
Can you tell us the actual problem? Why do you need to know where the files are? What are you actually trying to achieve? – ThatGraemeGuy Nov 27 '09 at 07:10
2 Answers
14
Task information is stored in %WINDIR%\System32\Tasks (or C:\Windows\System32\Tasks). They appear to be stored as a single file per task, in an XML type format.
They are then referenced from the registry in HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\TaskCache
Evan
- 531
- 2
- 5
1
I don't know about 2008, but 2003 stores them in %WINDIR%\Tasks. If you open the properties on a scheduled task, the full path is listed right at the top of the window.
Tim Sylvester
- 197
-
-
They probably moved it to a "shell folder". Is there an entry for it in the registry path
\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders(or "User Shell Folders") under local machine or current user? Have you tried searching your drive for.jobfiles? – Tim Sylvester Nov 26 '09 at 09:22