When working across language boundaries, you might want to use a way to “normalize” date and time, for example for logging. Instead of working with local times, it is really simple in PowerShell to convert DateTime objects to universal time:
(Get-Date).ToUniversalTime()