This blog post covers two commands from windows power shell, get-childitem and get-alias.
Get-alias command gives details about alias name correspond to different cmdlets. for example ls command can be used in place of dir. To get the list of all alias simple execute get-alias command. to get the command page by page get-alias | more command can be used.
Get-childitem (gci) gives the list of files and directories on given path.
Results provided by get-child item can be formatted as per requirement by using formatl-ist
format-list can be further formatted by using – property <propertyname1>, for example following command gives output of gci c: |format-list -property name
format-list can be further formatted by using – property <propertyname1>,<propertyname2> for example following command gives output of gci c: |format-list -property name,creationtime