Solutions
Use the following procedures to register the a DLL.
Register / re-register files
To register or re-register an application DLL file on your workstation, follow these steps.
Choose Start > Run and enter regsvr32 followed by the path to the DLL file you would like to register.
You do not need to unregister a file to re-register it.
The following example is an integration DLL file that needs to be re-registered for DT FileCabinet. The file is stored in
X
:\WinCSI\Cabinet\cscabsv.dll, (where
X
represents the drive where DT FileCabinet is installed).
In the Start > Run dialogue enter the following line to register cscabsv.dll.
regsvr32 X:\WinCSI\Cabinet\cscabsv.dll
If you've installed DT FileCabinet into a folder with a label that contains a space (for example, X:\Program Files\Winapps\Cabinet), you must enclose the entire path, including the file name, in quotation marks, as follows.
regsvr32 "X:\Program Files\Winapps\Cabinet\cscabsv.dll"
If you still see this error after completing the steps above, you may need to unregister the DLL file prior to re-registering it. To unregister the DLL, include
/u
followed by the DLL path, and then enter the same command without the
/u
to register it again.
To unregister the file from the example above, enter the following into the Run dialogue.
regsvr32 /u X:\WinCSI\Cabinet\cscabsv.dll
Errors on a 64-bit machine when registering / un-registering DLL files
Follow these steps if you receive errors when you attempt to register / unregister DLLs on a 64-bit machine.
Verify the path and name of the DLL that you are registering are valid.
Choose Start and enter
cmd
in the Search field.
Right click
cmd.exe
and choose
Run as administrator
.
Re-enter the regsvr32 commands.