I have many folders with many files in each that I want to capitalize the first letter of each word for in a batch. I've seen solutions for capitalizing strings, but that's not what I'm after. I use Powershell and I like to copy the script into the active folder and just run it. Therefore, most of my PS scripts begin with:
$PSScriptRoot
Example to rename files:
$PSScriptRoot
Get-ChildItem -File | Rename-Item -NewName { $_.Name -Replace "OLD","NEW"}
So just looking for something similar that capitalizes the first letter of each word in ALL filenames (excluding the extensions of course) in a batch.