Power and Pith
In our newsgroup, Benny asked the question, “How to get subdir items with full path name?” ClaudioG64 responded: PS> get-childitem C:\ | foreach-object -process { $_.FullName } Dreeschkind replied that we had pithier ways of doing it posting: PS> gci C:\ | % { $_.FullName } It was at this point that I realized that many of you don’t have...