bat 读取 ini 文件 参考链接:https://stackoverflow.com/questions/2866117/windows-batch-script-to-read-an-ini-file 这个 bat 支持 ini 的键值与=号之间存在空格,例如 key1 = value1 readini.bat: @if (@a==@b) @end /* -- batch / JScript hybrid line to begin JScript comment :: ---------…
借助<bat 读取 ini 文件>文章中的readini.bat实现(请自行前往下载),可满足多个section下Key值查询. ini文件示例 [Server] ServerName =127.0.0.1 读取Server下的ServerName set section1="Server" set key1="ServerName" for /f "delims=" %%a in ('call readini.bat /s sect…