Register loads of .dlls in a directory
Create a txt file. Stick this in it

@echo off
echo registering files….

:check
if not test%1==test goto run
goto end

:run
echo registering: %1 …..
regsvr32 “%1” /s
shift
goto check

:end
pause
exit

Name it whatever you want. It needs to be a cmd file so lets say
Batchjob.cmd
Then drag the .dlls to that file and it should run and open its own cmd window and start registering.

http://www.paulscomputerservice.net/articles/article.php?ID=69