Search found 1 match

by skoku
24 Nov 2009 04:06
Forum: DOS Batch Forum
Topic: How to register MUltiple DLL's in one command??
Replies: 2
Views: 11518

do you want to register all dll's in system32 or you have list of files?
if all files - you can simply use
for /f %%i in ('dir /B c:\windows\system32\*.dll') do regsvr32 /s C:\Winnt\System32\%%i

if you have file list
for /f %%i in (files.txt) do regsvr32 /s C:\Winnt\System32\%%i
rgds