Search found 1 match
- 03 Jan 2023 11:30
- Forum: DOS Batch Forum
- Topic: bug in my batch
- Replies: 0
- Views: 43093
bug in my batch
i write a simple batch that run list.txt and read server list from that file the results include an error "the system cannot find file specified why? here is the code: @echo off cls For /F "tokens=*" %%a in (list.txt) Do ( echo %%a schtasks /query /s %%a /fo list /tn "Reboot" echo. ) echo operation ...