Better to keep all the time in the UTC timezone as in the Rest API calls, the date data are presented in the UTC (Coordinated Universal Time) timezone.
As the UTC/GMT never changes, but rather the country adheres to a different time-zone during DST, we are not changing it either in the Orchestrator.
You may try these approaches:
In case you need the local time, use this code:
"Local Time: " + DateTime.ParseExact(Convert.ToString(Now),"MM/dd/yyyy HH:mm:ss",System.Globalization.CultureInfo.InvariantCulture).AddHours(0).ToString
In case you need the UTC time, use this code:
"Time in UTC: " + TimeZoneInfo.ConvertTimeToUtc(DateTime.Parse(Convert.ToString(Now))).ToString
Or you can do this if you need to keep all the time +2 hours in UTC:
"Time in UTC +2: " + TimeZoneInfo.ConvertTimeToUtc(DateTime.Parse(Convert.ToString(Now))).AddHours(2).ToString
Example: