I'm getting the date from a file name "BW-121113-CF1.pdf". So I have my date 121113, how do I figure out what day of the week that was. I tried: "{0:yyMMdd}" -f (get-date) "121113". But of course that didn't work. Any suggestions?
get-date "11/13/12" -format dddd
That get's me the right day of the week. But I need the get-date to understand that "121113" is the say date.