If you want to work out that date a specified number of unit in the future or past try this:
Add 5 hours : (Get-Date).AddHours(5)
Add 5 days: (Get-Date).adddays(5)
Minus 5 hours: (Get-Date).AddHours(-5)
Minus 5 days: (Get-Date).AddDays(-5)
If you want to work out that date a specified number of unit in the future or past try this:
Add 5 hours : (Get-Date).AddHours(5)
Add 5 days: (Get-Date).adddays(5)
Minus 5 hours: (Get-Date).AddHours(-5)
Minus 5 days: (Get-Date).AddDays(-5)
Warning: These cookies are for your browser, not your belly! 🍪🚫 They're packed with bytes, not bites, need more information. Read Privacy Policy
Ok