CMS Snapshot Analysis - Run Analyzer - Warnings - DOTNet with extension - DotNet Analyzer - Resolving error Could not find ActiveX whose PROGID

Problem Description

The warning “Could not find ActiveX whose PROGID” explains that the ASP Analyzer was not able to find ActiveX in the “registry” of the machine.

The result of this is that the links in this ActiveX object will not be found.

Observed in CAST Extension Version

ReleaseYes/No
1.0

Observed in RDBMS

RDBMSYes/No
Oracle Server
Microsoft SQL Server
CSS3
CSS2

Action Plan

To resolve the issues, you need to ensure that the ActiveX  object is registered in the registry. To do so

  1. Run the Regsvr32 command-line in the “cmd” window. This command-line tool registers .dll files (or ActiveX) as command components in the registry.
    Syntax

Regsvr32 [/u] [/n] [/i[:cmdline]] dllname


   **Parameters**

/u : Unregister server /s : Silent; display no message boxes /n : do not call DllRegisterServer; this option must be used with /i /i:cmdline : Call DllInstall passing it an optional [cmdline]; when used with /u calls dll uninstall dllname : Specifies the name of the dll file that will be registered /? : Displays help at the command prompt.


   **Example**

   To register the .dll for the Active Directory Schema, type

   ```java
regsvr32 D:\CAST\....\DLL\schmmgmt.dll

Where D:\CAST.…\DLL* is the path of the *schmmgmt.dll to be registered. 2. If the warnings are still coming even after the creation of the dependency along with the presence of the required source code, then contact CAST Technical Support. with the Relevant Input for reproduction of the issue

Notes/comments

Related Pages