Table of Contents

Powershell Quick Tips

Remove all svn tags from current directory and children

W:
CD W:\somedirectory

Get-ChildItem -Force -Recurse -Name -Include ".svn" | Remove-Item -Force -Recurse

Search a tree for a file

search from the current directory:
Get-ChildItem -Force -Recurse -Name -Include "test.js"