`Get-ChildItem` strangely doesn't work on Windows 7. Use this instead: ```powershell $files = gci src *.* -rec | where { ! $_.PSIsContainer } ```