Register Every DLL in a Directory with one Command
avatar

Have you ever had a folder filled with DLLs that you needed to register in the system?  You can register them all by just running this simple command:

for %v in (“<path>\*.dll”) do (regsvr32 /s “%v”)

This entry was posted in News and tagged . Bookmark the permalink.

Leave a Reply