Skip to content

Instantly share code, notes, and snippets.

@danmalcolm
Created July 26, 2013 09:02
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save danmalcolm/6087412 to your computer and use it in GitHub Desktop.
Get-PSDrive -PSProvider FileSystem | Where-Object -Property Free | %{ write-host 'Checking drive ' $_.Root; set-location $_.Root; Get-ChildItem -File -Filter *.sln -Recurse; write-host 'Checked drive ' $_.Root; } > "C:\temp\mysterious solutions.txt"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment