Search found 2 matches
- 11 Sep 2011 10:21
- Forum: DOS Batch Forum
- Topic: scheduled tasks
- Replies: 3
- Views: 3411
Re: scheduled tasks
Hi aGerman, Thank you for your response. Your code works very well on Windows Server 2003. But I have a problem with a scheduled task : I have a script that mounts a drive on each server start : net use P: \\server\share$ The person that has created this task is "sean". The Last result of ...
- 10 Sep 2011 13:26
- Forum: DOS Batch Forum
- Topic: scheduled tasks
- Replies: 3
- Views: 3411
scheduled tasks
Hi, I want to write the names of the scheduled tasks that failed (last result: 1,9 etc.) in a file. I can write the names of all the scheduled tasks that have been created on the Windows Server 2003 : for /F "delims=, tokens=2" %%R in ('schtasks /query /fo csv /v') do call :Sub %%R goto :e...