path to powershell From http://stackoverflow.com/questions/13126175/get-full-path-of-the-files-in-powershell
get-childitem "C:\windows\System32" -recurse | where {$_.extension -eq ".exe"} | % { Write-Host $_.FullName }