我是批次的新手。我正在尝试使用批处理编辑文件中的一行。但是,该行包含空格和一个保留字符(=
符号)基本上,我想更改PasswordComplexity = 1
为PasswordComplexity = 0
,它位于一个名为export.cfg
All Ideaspreciated 的文件中,这是我现在所拥有的:
setlocal enabledelayedexpansion
FOR /F "usebackq delims=" %%a IN ("export.cfg") DO (
set "line=%%a" & echo !line:(PasswordComplexity = 1)=(PasswordComplexity = 0)!
)>>"import.cfg"