PowerShell version of dir /s and the -Recurse parameter
My colleagues and I ran into a bit of a problem trying to find all the files that matched a pattern at or below the current folder. The problem is that the PowerShell Get-ChildItem cmdlet has a bizarre notion of file and path matching. Consider this cmd.exe command:
dir /s Microsoft*
This will return all the [...]

