Thursday, March 5, 2015

HOW TO - Register all .dll files

q: How can I register all the .dll files in a directory?
a: By using a for loop statement like the one below.

for /r %i in (*.dll) do regsvr32 /s "%i"