私はバッチで新しいです。バッチを使用してファイルの行を編集しようとしています。ただし、この行にはスペースと予約文字(記号)が含まれています。基本的には、に変更し=
たいと思います。これは、「すべてのアイデアに感謝」という名前のファイルにあります。これが
私が今持っているものです。PasswordComplexity = 1
PasswordComplexity = 0
export.cfg
setlocal enabledelayedexpansion
FOR /F "usebackq delims=" %%a IN ("export.cfg") DO (
set "line=%%a" & echo !line:(PasswordComplexity = 1)=(PasswordComplexity = 0)!
)>>"import.cfg"