Sarbashish's Code Book

Tips, tricks, and other stuffs on Microsoft Dynamics CRM, Microsoft SQL Server, MySQL, DotNet, Java, JavaScript

  • Categories

  • Archives

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 1 other subscriber
  • Meta

  • Author


    Sarbashish Bhattacharjee
    DOB: 23rd July 1972
    LOC: Bangalore, India

How to wrap 32 bit dll for 64 bit operating system to work with regsvr32.exe?

Posted by sarbashish on March 15, 2012

If you want to register the 32-bit COM DLL created using VC++ or Visual Basic 6.0 on Windows 2003 64-bit Operating System then you can do it easily with few tweaks. It is slightly tricky and for that you have to follow the steps below without making any changes in the code. It also does not require any compilation to be done and also you do not have to run the IIS in WOW Mode. I have faced this issue few years back and I resolved this issue and it works fine for me.

Scenario:

Let me assume that you have a 3rd party 32-bit COM DLL provided by a vendor. The DLL works fine on 32bit Operating system and the moment you move to a x64 environment it does not work even though you have tried to register it through regsv32.

Also let me assume that the name of the DLL is “ASXUpload.DLL”. I will use this name in the solution so that it becomes a little easy to follow the instructions.

Solution

Please follow the steps below:

1. First of all if you have already registered the DLL in x64 Operating System the unregister the DLL. To do that just type the following in the run command “regsvr32 /u <filename with the path>” something like “regsvr32 /u C:\MyDLL\ASXUpload.DLL”. If you have already unregistered the DLL from the x64 OS then no need to run this step.

2. Also make sure that you have not kept your DLL inside the Windows folder which is normally C:\Windows. For this example I have kept the DLL in the following folder C:\MyDLL.

3. Now we need to add the COM+ Components using Component Services of Microsoft. To start Component Services, go to Control Panel / Administrative Tools/ Component Services. Once inside component Services, drill down into Computers, then My Computer, then COM+ Applications. Then Right-click on COM+ Applications and choose “New” -> “Application”.

4. At “Welcome to the COM Application Install Wizard” screen, click “Next >”.

5. Click on “Create an Empty Application” button.

6. Enter the name. Since my DLL name is ASXUpload.dll so I have typed in the name as“ASXUpload”. When asked “Library or Server”, select“Server”.

7. Click “Next >” button and then choose“This User”.

8. Enter the User or click Browse to select the user. Clicking Browse is safer, to ensure that the correct domain and spelling are used. Enter the password and confirm the password. Warning, be sure to include the domain/username if required. Click on“Finish”. (Note: We recommend “This User”, otherwise, someone must be logged onto the server in order for DLL to run.). In my case I have chosen the domain administrator account. You can also add a Service Account. If you are not sure please consult with your system administrator.

9. Now“Add Application Roles” screen will appear. Do not add anything just click on the“Next >” button.

10. Now“Add Users to Role” screen appear. Do not add anything just click on the“Next >” button.

11. Now you will see that under Component Services -> Computers -> My Computer -> COM+ Application -> you will see the newly added application. In this example the application name would be“ASXUpload”. Now drill down the newly added application“ASXUpload” by clicking the “+” icon and you will see“Components”.

12. Now right-click on “Components” and then choose “New Component”. At “Welcome to the COM Application Install Wizard” screen, click“Next >”.

13. Click on“Install new component(s)” and now select the DLL which you want to register. In the case it would be“C:\MyDLL\ASXUpload.DLL”.

14. Once you select the DLL you will see that it will show you the components found. Click on the“Next >” button to proceed and finally hit the“Finish” button to complete.

15. Now is the tricky part. Right click on the application you have added which you will find under Component Services -> Computers -> My Computer -> COM+ Application. In my case the application name is “ASXUpload”. After you right click on the Application select“Properties”. The application properties window will open up. Click on the“Security” tab. In the Security tab make sure that under“Authorization” section the checkbox “Enforce access checks for this application” is unchecked.
Under “Security Level” section select the radio button“Perform access checks only at the process level. Security property will not be included on the object context. COM+ security call context will not be available.”
Make sure that option “Apply restriction policy” is unchecked.
Set “Impersonate Level” to “Anonymous”

16. If you want to access the DLL from web Application then make sure that you add the IUSR and IWAM account. To do this go to COM+ Application -> Application Name (In this case it will be ASXUpload) -> Roles -> CreateOwner -> Users. Right click on the Users and add the IUSR and IWAM account used by Internet Information Server.

17. Also set the NTFS permission on the folder where you kept the DLL. In this case I have kept the DLL inside the folder C:\MyDLL. Now right click on the folder “MyDLL” and go to the security tab and then add the IUSR and IWAM account.

This is all you need to do and you should be able to consume the DLL.
I have used this technique twice in two different organizations I have worked in the past on the Production Environment and it works without any issues. First I tried this in the year 2005 and then I used it again in 2008.

Let me know if you are facing any issues.

Cheers!!!!!

Leave a comment