Skip to content

Instantly share code, notes, and snippets.

@derekables
Last active March 7, 2016 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save derekables/47254943fb4c33b5b571 to your computer and use it in GitHub Desktop.
Save derekables/47254943fb4c33b5b571 to your computer and use it in GitHub Desktop.
Powershell.org Scripting Games - March - Beginner
Get-ChildItem '.\FileShare' -Recurse | Where {$_.Name -match "[\u00C0-\u00FF]"} | ft @{Expression={$_.Name};Label="File Name";width=20},@{Expression={$_.Directory};Label="Directory";width=22},@{Expression={$_.CreationTime};Label="Created";width=20},@{Expression={$_.LastWriteTime};Label="Last Modified";width=21},@{Expression={$_.Length};Label="Size";width=8}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment