diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-24 19:17:09 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-24 19:17:09 +0200 |
| commit | 71027453b26264a0a88ba0d2fa0f6bb96eafac51 (patch) | |
| tree | b19a4aca95048397f05b817ba4ecddc1b5b71dee /Software/Visual_Studio/PPC/Tango.PPC.Common/OS/DefaultOperationSystemManager.cs | |
| parent | 2f85568170b4c11c6c5876b7fac9e662a004d47f (diff) | |
| download | Tango-71027453b26264a0a88ba0d2fa0f6bb96eafac51.tar.gz Tango-71027453b26264a0a88ba0d2fa0f6bb96eafac51.zip | |
Fixed an issue with time zone change on PPC.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/OS/DefaultOperationSystemManager.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/OS/DefaultOperationSystemManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/OS/DefaultOperationSystemManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/OS/DefaultOperationSystemManager.cs index 5e6b9c156..36b31e888 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/OS/DefaultOperationSystemManager.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/OS/DefaultOperationSystemManager.cs @@ -108,7 +108,7 @@ namespace Tango.PPC.Common.OS /// <returns></returns> public async Task ChangeTimeZone(TimeZoneInfo timeZone) { - CmdCommand cmd = new CmdCommand("tzutil", $"/s \"{timeZone.StandardName}\""); + CmdCommand cmd = new CmdCommand("tzutil", $"/s \"{timeZone.Id}\""); await cmd.Run(); } } |
