The below PowerShell script will help change the Windows host time zone to Eastern Standard Time.

#!powershell

# Change the Timezone to EST
###################################
write-host ” ”
write-host “Changing Windows Host time zone to Eastern Standard Time” -ForegroundColor Yellow
write-host ” “
Set-TimeZone -Name “Eastern Standard Time”