A simple & short question:
How can I setup a default date format in powershell like yyyy-mm-dd ? so any date output will be like this format?
for always usage you can add in your .\Documents\WindowsPowerShell\profile.ps1
$culture = (Get-Culture).Clone() $culture.DateTimeFormat.ShortDatePattern = 'yyyy-MM-dd' Set-Culture $culture