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