Answers for "python set timezone windows"

0

python set timezone windows

import os
os.system('tzutil /s "Central Standard Time"')

//In windows command prompt try:

//This gives current timezone:
tzutil /g

//This gives a list of timezones:
tzutil /l

//This will set the timezone:
tzutil /s "Central America Standard Time"
Posted by: Guest on August-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language