Need to change the clock to 24 Hours

Apache

Member
Hello,

Is there a way to change the clock to 24 hours in the setup from ISO file,
In NTLite.

Any help would be appreciated

Thanks

Matthew
 
In Post-Setup
reg
Parameters :
add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" /v "region6" /t REG_SZ /f /d "reg add \"HKEY_CURRENT_USER\Control Panel\International\" /v sShortTime /t REG_SZ /d \"HH:mm tt\" /f"

reg
Parameters:
add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" /v "region7" /t REG_SZ /f /d "reg add \"HKEY_CURRENT_USER\Control Panel\International\" /v sTimeFormat /t REG_SZ /d \"HH:mm:ss\" /f"
 
Another way is to save this to a registry file (.reg), and import it under the Registry screen.

Code:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Control Panel\International]
"sTimeFormat"="HH:mm:ss"
"sShortTime"="HH:mm"
  • h:mm = 7:30 or 10:42
  • hh:mm = 07:30 or 10:42
  • h:mm tt = 7:30 AM or 10:42 PM
  • hh:mm tt = 07:30 AM or 10:42 PM
  • H:mm = 7:30 or 23:42
  • HH:mm = 07:30 or 23:42
  • H:mm tt = 7:30 AM or 23:42 PM
  • HH:mm tt = 07:30 AM or 23:42 PM
 
Back
Top