Registering OCX/DLL Files

less than 1 minute read

Description:

It is not uncommon for an application to throw an error about an “unregistered dll/osc” file.

To Resolve:

  1. For 32b computers:

    • Run => Regsvr32 /u (Filename.ocx/.dll)
    • Regsvr32 (Filename.ocx/.dll)
  2. For 64b computers:

    • run => cmd => cd C:\Windows\SysWOW64
    • Regsvr32 /u (Filename.ocx/.dll)
    • Regsvr32 (Filename.ocx/.dll)

Tags:

Updated:

Comments