D.J. Lactose Productions

Register Every DLL in a Directory with one Command

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”)

Exit mobile version