BDEAlias plug-in: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
(→‎Links: Updated links)
m (→‎Links: Update links)
Line 1: Line 1:
{{PageAuthor|Vytautas}}
{{PageAuthor|Vytautas}}
== Links ==
== Links ==
[[File:Exe.gif]] [http://vytautas.mine.nu/joomla/index.php?option=com_remository&Itemid=26&func=fileinfo&id=4 BDEAlias-0.5.exe] (89 KB)
[[File:Exe.gif]] [http://www.vytux.com/joomla/weblinks/projects.html BDEAlias-0.5.exe] (89 KB)


[http://vytautas.mine.nu/joomla/index.php Vytautas' Website]
[http://www.vytux.com Vytautas' Website]


== Description ==
== Description ==

Revision as of 01:25, 7 April 2008

Author: Vytautas (talk, contrib)


Links

Exe.gif BDEAlias-0.5.exe (89 KB)

Vytautas' Website

Description

Version: 0.5.

This plugin will allow you to add and delete BDE Aliases. The plugin is available from the links above or in the NSIS Wiki. For information on how to install BDE visit this Wiki page.

Usage Example

;
Section "Add"
  BDEAlias::AddAliasDebug '*A* NSIS' '*P* V:\' '*D* PARADOX' '*B* FALSE'
  pop $9
  MessageBox MB_OK $9
SectionEnd
 
Section "Add InterBase"
  BDEAlias::AddAliasDebug '*A* NSIS-Test' '*P* V:\' '*D* INTRBASE' '*O* USER NAME:"SYSDBA"' '*B* TRUE'
  pop $9
  MessageBox MB_OK $9
SectionEnd
 
Section "Delete"
  push "*A* NSIS"
  BDEAlias::DeleteAlias
  pop $9
  MessageBox MB_OK $9
SectionEnd

You can use both ways to pass the info to the plugin. E.G. by manually pushing the data as shown in the DeleteAlias Example. Or on the commandline like in the AddAlias examples.

The debug versions should only be called when testing the installer as they will display several message boxes containing the data you supplied to the plugin. Their main function is to check that the data is going to the right place.

To enable the plugin to detect the data types the following prefixes must be added to your data before pushing it to the stack:

Prefix Description
*A* Alias
*B* Enable BCD [TRUE/FALSE]
*D* Driver
*O* Other Parameters
*P* Path

Version History

[Update 2005-10-18] Version 0.5
Fixed problem with deleting Aliases. Added ability to specify if BCD should be enabled or not.
[Update 2004-01-23] Version 0.4
Added Debug versions of the Plugin Functions - Display the pop'ed values. Now you can specify the parameters in any order!
[Update 2003-12-18] Version 0.3
Added ability to specify other parameters such as 'User Name'. If you wish to specify more than one parameter you should separate them with a semicolon.
[Update 2003-11-19] Version 0.2
Uses the stack instead of variables for information transfer.

Vytautas