Toltec, пример для одной библиотеки:
Код:

@Echo Off
SetLocal EnableExtensions
If Not Exist %windir%\system32\1.dll (
Copy 1.dll %windir%\system32
Regsvr32 /s %windir%\system32\1.dll
)
Start /Wait proga.exe
If Exist %windir%\system32\1.dll (
Regsvr32 /u /s %windir%\system32\1.dll
Del /Q %windir%\system32\1.dll
)