Last active
November 23, 2015 22:21
-
-
Save OSDTips/ea4bf049bc7238a27bda to your computer and use it in GitHub Desktop.
Set-TimeZone.ps1
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
$timeZone = 'Romance Standard Time' | |
$proc = New-Object System.Diagnostics.Process | |
$proc.StartInfo.WindowStyle = "Hidden" | |
$proc.StartInfo.FileName = "tzutil.exe" | |
$proc.StartInfo.Arguments = "/s `"$timeZone`"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment