Posting a command I recently found that allows you find/replace file names in Powershell on Windows. <search>
and <replace>
both accept a regex or you can also add the -LiteralPath
option to rename-item
get-childitem *.txt | foreach { rename-item $_ $_.Name.Replace("<search>", "<replace>") }
In a world where Denvercoder69 actually does come back and reply to that blog post.