Created
October 19, 2015 08:57
-
-
Save ViktorOgnev/b23406daf9ac91a2d9b4 to your computer and use it in GitHub Desktop.
path to powershell
From http://stackoverflow.com/questions/13126175/get-full-path-of-the-files-in-powershell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get-childitem "C:\windows\System32" -recurse | where {$_.extension -eq ".exe"} | % { | |
Write-Host $_.FullName | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment