BRONZE PARTNER:
BRONZE PARTNER:
Industry News:

| |
 |
 |
 |
| Getting the Computer's Time Zone |
 |
|
|
By: Rod Trent
Posted On: 11/13/2008
Use this PowerShell script to retrieve the computer's Time Zone information.
Copy and paste from between the lines.
***********************
$computer = "LocalHost" $namespace = "root\CIMV2" Get-WmiObject -class Win32_SystemTimeZone -computername $computer -namespace $namespace
***********************
Information retrieved:
Element - references the computer name Setting - this is the actual time zone
|
 |
 |
 |
|
|