| This Tip was submitted by Andy
Hough.
Here is a little tip for the registering of a number of dll's in a directory structure.
for /r %i in (*.dll) do regsvr32 /s "%i"
or ocx's
for /r %i in (*.ocx) do regsvr32 /s "%i"
to unregister it all
for /r %i in (*.dll) do regsvr32 /s /u "%i"
for ocxs
for /r %i in (*.ocx) do regsvr32 /s /u "%i"
|