- Select a category.
Allow time zone redirection
This policy setting allows you to specify whether the client computer redirects its time zone settings to the Remote Desktop Services session.
If you enable this policy setting, clients that are capable of time zone redirection send their time zone information to the server. The server base time is then used to calculate the current session time (current session time = server base time + client time zone).
If you disable or do not configure this policy setting, the client computer does not redirect its time zone information and the session time zone is the same as the server time zone.
Note: Time zone redirection is possible only when connecting to at least a Microsoft Windows Server 2003 terminal server with a client using RDP 5.1 or later.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Terminalserver Server |
| Category | TS REDIRECTION |
| Applies to | User Configuration |
| Supported on | Windows Server2008 |
| Registry Key | [HKCU]SOFTWAREPoliciesMicrosoftWindows NTTerminal Services |
| Value Name | fEnableTimeZoneRedirection |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 0 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_CURRENT_USERSOFTWAREPoliciesMicrosoftWindows NTTerminal Services]
"fEnableTimeZoneRedirection"=dword:00000001
; Disable the policy
[HKEY_CURRENT_USERSOFTWAREPoliciesMicrosoftWindows NTTerminal Services]
"fEnableTimeZoneRedirection"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKCU:SOFTWAREPoliciesMicrosoftWindows NTTerminal Services" -Name "fEnableTimeZoneRedirection" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKCU:SOFTWAREPoliciesMicrosoftWindows NTTerminal Services" -Name "fEnableTimeZoneRedirection" -Value 0 -Type DWord 