Powershell Tip #103: Get current time UTC By powershellgu | July 20, 2016 0 Comment Tip: You can get the current time UTC : Solution 1 PowerShell [DateTime]::UtcNow 1 [DateTime]::UtcNow Solution 2 PowerShell (Get-Date).ToUniversalTime() 1 (Get-Date).ToUniversalTime()