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"
$date -format "yyyMMdd"is much more intuitive for formatting a single object than'{0:yyyyMMdd}' -f $date. – orad Jul 28 '15 at 23:51