Skip to content

Instantly share code, notes, and snippets.

@ViktorOgnev
Created October 19, 2015 08:57
Show Gist options
  • Save ViktorOgnev/b23406daf9ac91a2d9b4 to your computer and use it in GitHub Desktop.
Save ViktorOgnev/b23406daf9ac91a2d9b4 to your computer and use it in GitHub Desktop.
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