If anyone want to know time zone of server, simply use the below command in PowerShell console.
tzutil /g
if you want to check it on remote servers, use invoke-command
invoke-command -scriptblock {tzutil /g} -ComputerName comp1,comp2
Regards,
Chaitanya