Set-Date

 

Additional Resources for Set-Date

 

Changing a Computer’s Date and Time

http://www.microsoft.com/technet/scriptcenter/topics/msh/cmdlets/set-date.mspx

 

 

SYNOPSIS

Changes the system time on the computer to a time that you specify.

 

SYNTAX

Set-Date [-date] <DateTime> [-displayHint {<Date> | <Time> | <DateTime>}] [-whatIf] [-confirm] [<CommonParameters>]

 

Set-Date [-adjust] <TimeSpan> [-displayHint {<Date> | <Time> | <DateTime>}] [-whatIf] [-confirm] [<CommonParameters>]

 

DETAILED DESCRIPTION

The Set-Date cmdlet changes the system date and time on the computer to a date and time that you specify. You can specify a new date and/or time by typing a string or by passing a DateTime or TimeSpan object to Set-Date. To specify a new date or time, use the Date parameter. To specify a change interval, use the Adjust parameter.

 

PARAMETERS

 

-date <DateTime>

Changes the date and time to the specified values. You can type a new date in the short date format and a time in the standard time format for your locale. Or, you can pass a Date-Time object from Get-Date.

 

If you specify a date, but not a time, Set-Date changes the time to midnight on the specified date. If you specify only a time, it does not change the date.

 

Required?

true

Position?

1

Default value

System time

Accept pipeline input?  

true (ByValue, ByPropertyName)

Accept wildcard characters? 

false

 

-displayHint <DisplayHintType>

Determines which elements of the date and time are displayed. (This does not affect the DateTime object that Get-Date retrieves.)

 

Valid values are:

 

·          date: displays only the date

·          time: displays only the time

·          datetime: displays the date and time

 

The following lists the acceptable values for this parameter:

 

·          Date

·          Time

·          DateTime

 

Required?

false

Position?

named

Default value

DateTime

Accept pipeline input?  

false

Accept wildcard characters? 

false

 

-adjust <TimeSpan>

Adds or subtracts the specified value from the current date and time. You can type an adjustment in standard date and time format for your locale or use the Adjust parameter to pass a TimeSpan object from New-TimeSpan to Set-Date.

 

Required?

true

Position?

1

Default value

0

Accept pipeline input?  

true (ByPropertyName)

Accept wildcard characters? 

false

 

-whatIf

Describes what would happen if you executed the command without actually executing the command.

 

Required?

false

Position?

named

Default value

 

Accept pipeline input?  

false

Accept wildcard characters? 

false

 

-confirm

Prompts you for confirmation before executing the command.

 

Required?

false

Position?

named

Default value

 

Accept pipeline input?  

false

Accept wildcard characters? 

false

 

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, and -OutVariable. For more information, type, "get-help about_commonparameters".

 

INPUT TYPE

DateTime Object, TimeSpan Object

 

RETURN TYPE

DateTime Object

 

NOTES

 

For more information, type "Get-Help Set-Date -detailed". For technical information, type "Get-Help Set-Date -full".

 

Use this cmdlet cautiously. Changing the date and time on the computer. The change might prevent the computer from receiving system-wide events and updates that are triggered by a date or time. Use the -WhatIf and -Confirm parameters to avoid errors.

 

You can use standard .NET methods with the DateTime and TimeSpan objects used with Set-Date, such as AddDays, AddMonths and FromFileTime. For more information, see "DateTime Methods" and "TimeSpan Methods."

 

When specifying multiple values for a parameter, use commas to separate the values. For example, "<parameter-name> <value1>, <value2>".

 

EXAMPLE 1

 

Set-Date -Date (Get-Date).AddDays(3)

 

This command adds three days to the current system date. It does not affect the time. The command uses the Date parameter to specify the date. It uses the Get-Datecmdlet to get the current date and time and applies the AddDays .NET method for DateTime objects with a value of 3 (days).

 

EXAMPLE 2

 

set-date -adjust -0:10:0 -displayHint time

 

This command sets the current system time back by 10 minutes. It uses the Adjust parameter to specify an interval of change and the time change (minus ten minutes) in standard time format for the locale. The DisplayHint parameter tells Windows PowerShell to display only the time, but it does not affect the DateTime object that Set-Date returns.

 

EXAMPLE 3

 

$t = get-date

 

set-date -date $t

 

These commands change the system date and time on the computer to the date and time saved in the variable $t. The first command gets the date and stores it in $t. The second command uses the Date parameter to pass the DateTime object in $t to the Set-Date cmdlet.

 

EXAMPLE 4

 

$90mins = new-timespan -minutes 90

 

set-date -adjust $90mins

 

These commands advance the system time on the local computer by 90 minutes. The first command uses the New-Timespancmdlet to create a TimeSpan object with a 90-minute interval, and then it saves the TimeSpan object in the $90mins variable. The second command uses the Adjust parameter of Set-Date to adjust the date by the value of the TimeSpan object in the $90mins variable.

 

RELATED LINKS

Get-Date

New-TimeSpan