external help file | Module Name | online version | schema |
---|---|---|---|
PSDates-help.xml |
PSDates |
2.0.0 |
Converts a datetime value to Unix Time
ConvertTo-UnixTime [[-date <DateTime>]] [-ProgressAction <ActionPreference>] [<CommonParameters>]
This function will return the unix time based on the unix epoch time. If no date is passed in the current date and time is used.
ConvertTo-UnixTime
Gets unix time for the current time
ConvertTo-UnixTime -date "11/17/2017"
Gets unix time for a specific date
The datetime value to return the unix time for
Type: DateTime
Parameter Sets: (All)
Aliases:
Accepted values:
Required: True (None) False (All)
Position: 0
Default value: $(Get-Date)
Accept pipeline input: False
Accept wildcard characters: False
DontShow: False
{{ Fill ProgressAction Description }}
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Accepted values:
Required: True (None) False (All)
Position: Named
Default value:
Accept pipeline input: False
Accept wildcard characters: False
DontShow: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Fill Related Links Here