devxlogo

COM in IIS

COM in IIS

Question:
After I compile my DLL in VB and run the component through IIS, I cannot recompile the DLL and I get a file locking error. I am using VB6 and NT 4.

Answer:
Once the DLL has been used by IIS, you have to reboot the Web services in order to recompile the DLL with any changes. This gets really tedious, especially if you have to do it through the Control Panel. Instead of doing it that way, you can write a script to stop and restart the relevant services. Somewhere in the system path (I like the System32 directory, personally), create a batch file containing these lines:

@echo offnet stop iisadmin /ynet start iisadminnet start w3svcnet start "FTP Publishing Service"

This stops the IIS Admin service, which also stops all related services (Web, FTP, etc.). It then restarts the IIS Admin service and the Web service. I prefer to restart the FTP service, as well, so you might want to add that in. Running this batch file can be done from a menu choice or from the Run prompt, and is much faster than having to use the Services applet.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist