PowerTip: Use PowerShell to Create DateTime Object for Any Date

Doctor Scripto

Summary: Use Windows PowerShell to easily create a DateTime object X days in the future.

Hey, Scripting Guy! Question How can I use Windows PowerShell to create a DateTime object for a date at some point in the future?

Hey, Scripting Guy! Answer Use the AddDays method from the DateTime object, for example:

(get-date).AddDays(8)

0 comments

Discussion is closed.

Feedback usabilla icon