NAME
New-TimeSpan
SYNOPSIS
Creates a TimeSpan object.
SYNTAX
New-TimeSpan [[-Start] <DateTime>] [[-End] <DateTime>] [<CommonParameters>]
New-TimeSpan [-Days <int>] [-Hours <int>] [-Minutes <int>] [-Seconds <int>] [<CommonParameters>]
DESCRIPTION
The New-TimeSpan cmdlet creates a TimeSpan object that represents a time. interval You can use a TimeSpan object to add or subtract time from DateTime objects.
Without parameters, a “New-TimeSpan” command returns a timespan object that represents a time interval of zero.
PARAMETERS
-Days <int>
Indicates the days in the time span. The default is 0.
Required? false
Position? named
Default value 0
Accept pipeline input? false
Accept wildcard characters? false
-End <DateTime>
Indicates the end of a time span. The default is the current date and time.
Required? false
Position? 2
Default value Current date and time
Accept pipeline input? true (ByPropertyName)
Accept wildcard characters? false
-Hours <int>
Indicates the hours in the time span. The default is zero.
Required? false
Position? named
Default value 0
Accept pipeline input? false
Accept wildcard characters? false
-Minutes <int>
Indicates the minutes in the time span. The default is 0.
Required? false
Position? named
Default value 0
Accept pipeline input? false
Accept wildcard characters? false
-Seconds <int>
Indicates the length of the time span in seconds. The default is 0.
Required? false
Position? named
Default value 0
Accept pipeline input? false
Accept wildcard characters? false
-Start <DateTime>
Indicates the start of a time span. Enter a string that represents the date and time, such as “3/15/09” or a DateTime object, such as one from a Get-Date command.
The default is the current date and time.
Required? false
Position? 1
Default value Current date and time
Accept pipeline input? true (ByValue, ByPropertyName)
Accept wildcard characters? false
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer and OutVariable. For more information, type,
“Get-Help about_CommonParameters“.
INPUTS
System.DateTime
You can pipe a DateTime object that represents that start time to New-TimeSpan.
OUTPUTS
System.Timespan
New-TimeSpan returns an object that represents the time span.
NOTES
————————– EXAMPLE 1 ————————–
C:\PS>$timespan = New-TimeSpan -hour 1 -minute 25
Description
———–
This command creates a TimeSpan object with a duration of 1 hour and 25 minutes and stores it in a Variable named $timespan. It displays a representation of the TimeSpan object.
————————– EXAMPLE 2 ————————–
C:\PS>New-TimeSpan -End (Get-Date -year 2010 -month 1 -day 1)
Description
———–
This example creates a new TimeSpan object that represents the interval between the time that the command is run and January 1, 2010.
This command does not require the Start parameter, because the default value of the Start parameter is the current date and time.
————————– EXAMPLE 3 ————————–
C:\PS>$90days = New-TimeSpan -days 90
C:\PS> (Get-Date) + $90days
Description
———–
These commands return the date that is 90 days after the current date.
RELATED LINKS
Online version: http://go.microsoft.com/fwlink/?LinkID=113360
Set-Date
Get-Date