Click to See Complete Forum and Search --> : How to register MUltiple DLL's in one command??


sudpat
March 16th, 2006, 10:48 AM
Hi,

I have around 100 DLL's in my folder which I have to register, I dont want to register each one of them by repeating the command regsvr33 for each of the DLL'. Is there any way where in I can register them in one shot without any hassle??? Please any help would be greatly appreciated.

Thanks,

Mike Harnad
March 16th, 2006, 05:02 PM
What type of dlls do you need to register? Do they export "DllRegisterServer"?

Vi2
March 16th, 2006, 11:50 PM
"FOR %1 IN (*.DLL) DO REGSVR32 /S %1" in CMD prompt.

Or
"FOR %%1 IN (*.DLL) DO REGSVR32 /S %%1" in .bat file.

humptydumpty
March 17th, 2006, 12:15 AM
it's regsvr32 not regsvr33 ( i never saw this).Second thing From command Prompt if u use regsvr32 and at a single time u can register 4 to 5 dll .not more then this,just on your run button write regsvr32 and drag and drop or dll on this it will work for you.i don't think thr is any way to register 100 dll at once.

Thanx

Ejaz
March 17th, 2006, 01:17 AM
[ Moved Thread ]