Resource type is used to represent COM components.
Root Path |
Uses standard File Browser |
Delimiter |
|
Ordering |
|
Selection Type |
|
Sample Path |
|
Filters |
*.ocx. *.dll |
COM components are stored as a file in their native format.
The COM component is compared as a binary file against the file used during installation. M-I diff will only indicate that there were differences (i.e. the two binary files are different) but will not indicate the details of the differences.
Regsvr32 is called to register the COM components in the dll using the following command line call:
regsvr32.exe /s <file path> |
Regsvr32 is called to unregister the COM components in the dll using the following command line call:
regsvr32.exe /s /u <file path> |
After the dll is unregistered it is removed from the target system.
Action |
Condition |
Result |
Install |
The supplied .dll or .ocx does not contain COM components |
Installation fails. |
Uninstall |
The supplied .dll or .ocx does not contain COM components |
Uninstall fails |