Last active
January 10, 2019 01:18
-
-
Save FKasa/56e4957a147946cbaa1a8b145e3cfced to your computer and use it in GitHub Desktop.
sq-MK regional settings in 1 line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$RegKeyPath = "HKCU:\Control Panel\International";Set-ItemProperty -Path $RegKeyPath -Name LocaleName -Value "sq-MK";Set-ItemProperty -Path $RegKeyPath -Name iFirstDayOfWeek -Value "0";Set-ItemProperty -Path $RegKeyPath -Name sShortTime -Value "HH:mm";Set-ItemProperty -Path $RegKeyPath -Name sTimeFormat -Value "HH:mm:ss";Set-ItemProperty -Path $RegKeyPath -Name sList -Value ",";Set-ItemProperty -Path $RegKeyPath -Name sTime -Value ":";Set-ItemProperty -Path $RegKeyPath -Name sThousand -Value "'";Set-ItemProperty -Path $RegKeyPath -Name sMonThousandSep -Value "'";Set-ItemProperty -Path $RegKeyPath -Name sLongDate -Value "dd MMMM yyyy";Set-ItemProperty -Path $RegKeyPath -Name sShortDate -Value "dd MMM yy";Set-TimeZone -Id "Central European Standard Time" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment