Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 652 Bytes

2016-05-26-registering-ocxdll-files.md

File metadata and controls

28 lines (21 loc) · 652 Bytes
title date author layout classes permalink tags
Registering OCX/DLL Files
2016-05-26 22:45:00 +0000
gerryw1389
single
wide
/2016/05/registering-ocxdll-files/
Windows

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)