PowerTip: Use PowerShell to Display Locale-Specific Date

Summary : Learn how to use Windows PowerShell to display the date in locale-specific format.
How can I use Windows PowerShell to display the day, month, and two-digit year in locale specific format?
Use the Get-Date cmdlet and the –uformat parameter:
get-date -UFormat %x...(read more)