Articles > Windows XP
Printer Friendly Version
Views: 19109

regsvr32 script to register multiple dll files

Last Updated: 5/20/09

Here is a batch file / command script I wrote for registering a lot of DLL files all at once. Just drag a bunch of dll files onto this script after you same it as a .cmd file. Script below:
@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







Keywords: regsvr32 register multiple dll files easily at once