However, to use developer-centric date-time methods, you will need to know them first. Here is how:
Get-Date | Get-Member -memberType *Method
This will give you a list of all methods provided by date-time objects. To add six years to today's date, you can use this:
(Get-Date).AddYears(6)