Summary: Use Windows PowerShell to easily create a DateTime object X days in the future.
How can I use Windows PowerShell to create a DateTime object for a date at some point in the future?
Use the AddDays method from the DateTime object, for example:
(get-date).AddDays(8)