Install BDE

From NSIS Wiki
Jump to navigationJump to search
Author: Vytautas (talk, contrib)


How To Use

To install BDE from NSIS first extract BDEINST.DLL from BDEINST.CAB, which should be found in "Program Files\Common Files\Borland Shared\BDE" folder and then include this code in your script.

The Script

GetTempFileName $0
File /oname=$0 C:\Path\To\Extracted\BDEINST.DLL
CallInstDLL $0 /NOUNLOAD DllRegisterServer

NOTE: The previous code produced an error on some machines and thus has been replaced by this function. This page was created from info in this thread. Also a page for the BDE Alias plugin is available.

Vytautas