I can format the Get-Date cmdlet no problem like this:
$date = Get-Date -format "yyyyMMdd"
But once I’ve got a date in a variable, how do I format it? The statement below
$dateStr = $date -format "yyyMMdd"
returns this error:
“You must provide a value expression
on the right-hand side of the ‘-f’
operator”
The same as you would in .NET:
Or:
Note that you can have a format string that gets multiple objects. For example: