Search found 1 match

by erez669
03 Jan 2023 11:30
Forum: DOS Batch Forum
Topic: bug in my batch
Replies: 0
Views: 33306

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 ...