Summary: Learn how to use Windows PowerShell to display the date in a month, day, and two-digit year format.
How can I use Windows PowerShell to display the date in a month, day, and two-digit number format with a hyphen between each of the elements?
Use the ToString method from the Get-Date cmdlet and specify a pattern to achieve your desired results:
PS C:\> (get-date).ToString("MM-dd-yy")
03-11-13