サブフォルダも含めすべてのファイルの中身を同じ内容で入れ替えるサンプルコードです。
コマンド:
rem ファイル名はフォルダ名にスペースが含まれていないこと
for /F "delims=" %%i in ('dir /b /s c:\test\*.html') do (copy c:\orgdatafile\from.txt %%i ) 
実行例:
C:\>for /F "delims=" %i in ('dir /b /s c:\test\*.html') do (copy c:\orgdatafile\from.txt %i  )
C:\>(copy c:\orgdatafile\from.txt c:\test\abc.html  )
        1 個のファイルをコピーしました。
C:\>(copy c:\orgdatafile\from.txt c:\test\zzz\abc.html  )
        1 個のファイルをコピーしました。