Skip to content

Latest commit

 

History

History
101 lines (65 loc) · 1.88 KB

ConvertTo-UTCTime.md

File metadata and controls

101 lines (65 loc) · 1.88 KB
external help file Module Name online version schema
PSScriptTools-help.xml
PSScriptTools
2.0.0

ConvertTo-UTCTime

SYNOPSIS

Convert a local datetime to universal time.

SYNTAX

ConvertTo-UTCTime [[-DateTime] <DateTime>] [-AsString] [<CommonParameters>]

DESCRIPTION

Convert a local datetime to universal time. The default is now but you can specify a datetime value. You also have an option to format the result as a sortable string.

This command was introduced in v2.3.0.

EXAMPLES

Example 1

PS C:\> Get-Date

Wednesday, March 26, 2025 11:01:57 AM

PS C:\> ConvertTo-UTCTime

Wednesday, March 26, 2025 3:02:13 PM

Example 2

PS C:\> ConvertTo-UTCTime -asString
2025-03-26 15:02:29Z

PARAMETERS

-DateTime

Enter a Datetime value

Type: DateTime
Parameter Sets: (All)
Aliases:

Required: False
Position: 0
Default value: now
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-AsString

Convert the date-time value to a sortable string. This is the same thing as running a command like "{0:u}" -f (Get-Date).ToUniversalTime()

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

System.DateTime

OUTPUTS

System.DateTime

NOTES

Learn more about PowerShell: https://jdhitsolutions.com/yourls/newsletter

RELATED LINKS

ConvertFrom-UTCTime

Get-Date