Если выглядит так, что вам нужно спланировать количество пробелов между именами заданий, для которых вы будете использовать эту логику, а затем соответствующим образом скорректируйте tokens
и variables
.
В частности, для « Тестового задания » используйте:
for /f "tokens=1-9" %%j in ('schtasks /Query /S [servername] /TN "Test Sample Job" /NH ^| findstr "Ready ^| Running"') do schtasks /Change /Disable /TN "%%j %%k %%l"
Примечание. Это не будет работать для имен заданий без пробелов, поэтому вам потребуется скрипт для имен заданий с пробелами и без них.Вам понадобится отдельный сценарий для имен заданий с двумя пробелами, тремя пробелами, четырьмя пробелами и т.д., Поэтому вам, возможно, придется лучше стандартизировать наименование заданий или соответствующим образом планировать сценарии.
Дополнительные ресурсы
FOR /?
tokens=x,y,m-n - specifies which tokens from each line are to
be passed to the for body for each iteration.
This will cause additional variable names to
be allocated. The m-n form is a range,
specifying the mth through the nth tokens. If
the last character in the tokens= string is an
asterisk, then an additional variable is
allocated and receives the remaining text on
the line after the last token parsed.
Some examples might help:
FOR /F "eol=; tokens=2,3* delims=, " %i in (myfile.txt) do @echo %i %j %k
would parse each line in myfile.txt, ignoring lines that begin with
a semicolon, passing the 2nd and 3rd token from each line to the for
body, with tokens delimited by commas and/or spaces. Notice the for
body statements reference %i to get the 2nd token, %j to get the
3rd token, and %k to get all remaining tokens after the 3rd. For
file names that contain spaces, you need to quote the filenames with
double quotes. In order to use double quotes in this manner, you also
need to use the usebackq option, otherwise the double quotes will be
interpreted as defining a literal string to parse.
%i is explicitly declared in the for statement and the %j and %k
are implicitly declared via the tokens= option. You can specify up
to 26 tokens via the tokens= line, provided it does not cause an
attempt to declare a variable higher than the letter 'z' or 'Z'.
Remember, FOR variables are single-letter, case sensitive, global,
and you can't have more than 52 total active at any one time.