标题: [注册表类] [已解决]批处理如何提取注册表的键值 [打印本页]
作者: sinun 时间: 2014-10-5 01:40 标题: [已解决]批处理如何提取注册表的键值
本帖最后由 sinun 于 2014-10-5 23:42 编辑
请教各位老师,谢谢:
批处理如何将HKEY_CURRENT_USER\Control Panel\International 项 sShortDate 的字符串值提取出来,比如 yyyy-M-d
作者: bailong360 时间: 2014-10-5 09:11
- For /F "Delims=" %%i In ('Reg Query HKEY_CURRENT_USER\Control Panel\International /v sShortDate') Do Echo;%%i
复制代码
Just like this!
作者: Batcher 时间: 2014-10-5 10:43
回复 2# bailong360
需要加双引号- @echo off
- for /f "delims=" %%i in ('reg query "HKEY_CURRENT_USER\Control Panel\International" /v sShortDate') do (
- set "DateFormat=%%i"
- )
- set DateFormat=%DateFormat:~-8%
- echo,%DateFormat%
- pause
复制代码
作者: sinun 时间: 2014-10-5 20:58
本帖最后由 sinun 于 2014-10-5 23:42 编辑
OK,非常感谢两位老师的指导!
作者: hnldwhm52 时间: 2014-10-6 14:09
xiexiexei!
欢迎光临 批处理之家 (http://bathome.net./) |
Powered by Discuz! 7.2 |