views:

32

answers:

1

Can anyone let me know if there is any equivalent functionality to JT.EXE to provide the following:

A. Windows Scheduled Task information. Data returned must include Application name, app parameters, credentials account name, task type, days interval, weeks interval, days of the week, start time, and whether the job is
disabled.

+1  A: 

The SCHTASKS command (reference, examples) has been available since XP, and should do everything you need. Specifically, to see all the info you wanted, you can type

schtasks /query /v
ewall
Thanks for your answer,Santhosh.

related questions