DateTime to Year Quater
"$($date.Year)$("{0:00}" -f [Math]::ceiling($date.Month/3) )"
Details
Format a DateTime value in the Year Quater format

Example
PS C:\> $Date = Get-Date
>> "$($date.Year)$("{0:00}" -f [Math]::ceiling($date.Month/3) )"

201901
DateTime to Month Abbreviation
(Get-Culture).DateTimeFormat.GetAbbreviatedMonthName($date.Month)
Details
Format a DateTime value in the Month Abbreviation format

Example
PS C:\> $Date = Get-Date
>> (Get-Culture).DateTimeFormat.GetAbbreviatedMonthName($date.Month)

Mar
DateTime to Month Name
(Get-Culture).DateTimeFormat.GetMonthName($date.Month)
Details
Format a DateTime value in the Month Name format

Example
PS C:\> $Date = Get-Date
>> (Get-Culture).DateTimeFormat.GetMonthName($date.Month)

March
DateTime to Day Abbreviation
(Get-Culture).DateTimeFormat.GetAbbreviatedDayName($date.DayOfWeek.value__)
Details
Format a DateTime value in the Day Abbreviation format

Example
PS C:\> $Date = Get-Date
>> (Get-Culture).DateTimeFormat.GetAbbreviatedDayName($date.DayOfWeek.value__)

Thu