In this example all *.html files in this directory and all sub directories will be renamed to *.htm
for /r %x in (*.html) do ren "%x" *.htm
In this example all *.html files in this directory and all sub directories will be renamed to *.htm
for /r %x in (*.html) do ren "%x" *.htm