Skip to content

Instantly share code, notes, and snippets.

@Windos
Created March 12, 2016 02:56
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 Windos/b61d97298976ea79b706 to your computer and use it in GitHub Desktop.
Save Windos/b61d97298976ea79b706 to your computer and use it in GitHub Desktop.
Beginner entry for March 2016 PowerShell.org scripting games
# Beginner Puzzle
(Get-ChildItem C:\FileShare -Recurse).Where({$_.Name -match "[\u00C0-\u00FF]"}) |
Select-Object -Property Name,
Directory,
@{n="Creation Date";e={$_.CreationTime}},
@{n="Last Modification Date";e={$_.LastWriteTime}},
@{n="File Size";e={$_.Length}} |
Format-Table
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment