Recursive folder rename through command line

Here is a usefull script to rename your files under the z:/ drive:

Get-ChildItem Z:/ -Recurse | Rename-Item -NewName { $_.name -replace 'PHOTOS', 'Photos'}

Hope this helps.

Regards,