Where does Windows store the settings for Scheduled Tasks console?

前端 未结 3 1548
梦谈多话
梦谈多话 2020-12-28 14:33

I would like to know where Windows stores information for Scheduled Tasks. I would like to be able to find the reference for the name, schedule, or command to run associated

3条回答
  •  有刺的猬
    2020-12-28 15:18

    I needed to delete some tasks as in a script as the final part of a system build.

    I discovered you can just delete them eg:

    @echo ..Audit hardware
    
    "\\vs-files\General\0000 IT\Bginfo.exe" "\\czwgbak\Software\_Build2015\AuditWorkstation.bgi" /timer:0 /Silent /NOLICPROMPT
    
    @echo delete Scan Setup inis
    
    If not exist %systemroot%\System32\Tasks\ASUS\nul goto reg
    rd %systemroot%\System32\Tasks\ASUS /S /Q
    
    :reg
    

    etc...

提交回复
热议问题