Find and rename folders with powershell and REGEX
dir 06* | %{rename-item $_ -newname ($_.name -Replace "^06","2006")}Used it to find all my photo folders starting with 06 and renamed them to 2006.
Labels: Powershell
dir 06* | %{rename-item $_ -newname ($_.name -Replace "^06","2006")}Labels: Powershell