Summary: Use Windows PowerShell to easily change the way the date displays on your computer.
How can I use Windows PowerShell to display the date on my computer as a two-digit month, two-digit day,
and two-digit year?
Use the ToString() method from the Get-Date cmdlet. Here are two examples:
PS C:\> (get-date).tostring("MM/dd/yy")
05/19/14
PS C:\> (get-date).tostring("MMddyy")
051914