如何将Windows的短时间格式设置为:HH:mm:ss
像这样的短日期:d/M/yyyy
和批处理文件?
我在法国,所有电脑都是法语,有什么不同吗?
答案 0 :(得分:1)
使用.bat
扩展名保存,并使用管理员权限运行:
Windows Registry Editor Version 5.00
; @ECHO OFF
; CLS
; REGEDIT.EXE /S "%~f0"
; EXIT
[HKEY_CURRENT_USER\Control Panel\International]
"sDate"="/"
"sShortDate"="d/M/yyyy"
"sTime"=":"
"sTimeFormat"="HH:mm:ss"
"sShortTime"="HH:mm"
"sYearMonth"="M yyyy"
这使用REGEDIT /S
,因此它与Windows XP及更高版本的所有内容兼容。
如果您的计算机至少使用Vista,则可以使用REG
command来避免来自Windows Registry Editor Version 5.00
和cls
的恼人输出。在命令提示符下,更改将在下一个cmd会话中生效。