[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
用第三方工具inifile比较容易实现,可以到这里下载:http://bcn.bathome.net/s/tool/index.html?key=inifile

然后执行:
  1. inifile a.ini [SERVER_DATA_2] SERVER_USER=123456
  2. inifile a.ini [SERVER_DATA_2] SERVER_PASSWORD=888888
复制代码

TOP

回复 5# 670422423


最后加一行:
  1. move /y "%FileNew%" "%FileOld%"
复制代码
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复  670422423

请参考Q-04和Q-05把bat文件和ini文件都保存为ANSI编码:
批处理读取ini文件内容并修改 ...
Batcher 发表于 2023-7-28 17:58



    实测可以修改,并生成新的ini文件,但是与原文件不太一样 好像把中间空行删除了。

TOP

回复 3# Batcher


    可以在原文件上修改,不生成新的ini文件吗

TOP

回复 2# zaqmlp


    不能用

TOP

回复 1# 670422423

请参考Q-04和Q-05把bat文件和ini文件都保存为ANSI编码:
https://mp.weixin.qq.com/s/Koje4FufWxWBs7ioDy_LJA

不保留空行.bat
  1. @echo off
  2. cd /d "%~dp0"
  3. setlocal enabledelayedexpansion
  4. set "FileOld=1.ini"
  5. set "FileNew=2.ini"
  6. set "BeginChange="
  7. (for /f "tokens=1,2 delims==" %%a in ('type "%FileOld%"') do (
  8.     if "%%b" equ "" (
  9.         set "ThisRow=%%a"
  10.     ) else (
  11.         set "ThisRow=%%a=%%b"
  12.     )
  13.     if "%%a" equ "[SERVER_DATA_2]" (
  14.         echo,!ThisRow!
  15.         set "BeginChange=true"
  16.     ) else if "!BeginChange!" equ "true" (
  17.         if "%%a" equ "SERVER_USER" (
  18.             echo,%%a=bbs.bathome.net
  19.             set "ChangeU=true"
  20.         ) else if "%%a" equ "SERVER_PASSWORD" (
  21.             echo,%%a=www.bathome.net
  22.             set "ChangeP=true"
  23.         ) else (
  24.             echo,!ThisRow!
  25.         )
  26.         if "!ChangeU!" equ "true" (
  27.             if "!ChangeP!" equ "true" (
  28.                 set "BeginChange=false"
  29.             )
  30.         )
  31.     ) else (
  32.         echo,!ThisRow!
  33.     )
  34. ))>"%FileNew%"
复制代码
保留空行.bat
  1. @echo off
  2. cd /d "%~dp0"
  3. setlocal enabledelayedexpansion
  4. set "FileOld=1.ini"
  5. set "FileNew=2.ini"
  6. set "BeginChange="
  7. (for /f "tokens=1,2 delims=:" %%i in ('findstr /n .* "%FileOld%"') do (
  8.     if "%%j" equ "" (
  9.         echo,
  10.     ) else (
  11.         for /f "tokens=1,2 delims==" %%a in ("%%j") do (
  12.             if "%%b" equ "" (
  13.                 set "ThisRow=%%a"
  14.             ) else (
  15.                 set "ThisRow=%%a=%%b"
  16.             )
  17.             if "%%a" equ "[SERVER_DATA_2]" (
  18.                 echo,!ThisRow!
  19.                 set "BeginChange=true"
  20.             ) else if "!BeginChange!" equ "true" (
  21.                 if "%%a" equ "SERVER_USER" (
  22.                     echo,%%a=bbs.bathome.net
  23.                     set "ChangeU=true"
  24.                 ) else if "%%a" equ "SERVER_PASSWORD" (
  25.                     echo,%%a=www.bathome.net
  26.                     set "ChangeP=true"
  27.                 ) else (
  28.                     echo,!ThisRow!
  29.                 )
  30.                 if "!ChangeU!" equ "true" (
  31.                     if "!ChangeP!" equ "true" (
  32.                         set "BeginChange=false"
  33.                     )
  34.                 )
  35.             ) else (
  36.                 echo,!ThisRow!
  37.             )
  38.         )
  39.     )
  40. ))>"%FileNew%"
复制代码
批处理读取ini文件内容并修改指定的值
http://bbs.bathome.net/thread-30373-1-1.html

批处理读取ini文件指定小节的内容
http://bbs.bathome.net/thread-57942-1-1.html
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

¥20,bat存为ANSI/GB2312编码
  1. <# :
  2. cls&echo off&cd /d "%~dp0"&set "current=%cd%"
  3. path %SYSTEMROOT%\System32\WindowsPowerShell\v1.0;%path%
  4. powershell -NoProfile -ExecutionPolicy bypass "Get-Content -literal \"%~f0\"|Out-String|Invoke-Expression"
  5. pause
  6. exit
  7. #>
  8. $inifile="D:\Program Files (x86)\xxx.ini";
  9. if(-not (test-path -literal $inifile)){write-host ('"'+$inifile+'" path error or not exist');exit;}
  10. $codes=@'
  11. using System;
  12. using System.Runtime.InteropServices;
  13. public static class EditINI
  14. {
  15.     [DllImport("kernel32")]
  16.     public static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
  17. }
  18. '@;
  19. Add-Type -TypeDefinition $codes;
  20. [EditINI]::WritePrivateProfileString('SERVER_DATA_2', 'SERVER_USER', '112233', $inifile);
  21. [EditINI]::WritePrivateProfileString('SERVER_DATA_2', 'SERVER_PASSWORD', '88888', $inifile);
复制代码
提供bat代写,为你省时省力省事,支付宝扫码头像支付
微信: unique2random

TOP

返回列表