Let's consider the below snippet,
Get-ChildItem -Path C:\MyFolder | Select-Object Name, CreationTime, Length
It simply output the folder content with the selected properties. Something like,
What if I want to display the file size in KB ? This is where calcualted properties comes handy.
Get-...