InstallSheild技术-->Accessing or Setting Windows Installer Properties

在Basic MSI 和InstallScript MSI工程中,推迟,提交,回滚的自定义操作(Custom Actions)只能访问有限的几个windows安装属性:CustomActionData, ProductCode, 和UserSID。
如果你想在推迟/提交/回滚的自定义操作中,访问一些其他的windows属性,可以将需要访问的属性传递给CustomActionData,然后获取CustomActionData的值。

下面是一个在推迟自定义操作中,访问windows安装属性SUPPORTDIR的例子:

1. 在Custom Actions and Sequences中创建一个set-a-property的自定义操作叫GetSUPPORTDIR。如下设置这个自定义操作,
・ Property Name: DisplaySupportDir
・ Property Value: [SUPPORTDIR]

・ Install Exec Sequence: After InstallInitialize


2. 在InstallScript中,创建一个新的函数叫DisplaySupportDir


3. 添加下面代码可以显示SUPPORTDIR的值。
function DisplaySupportDir(hMSI)
STRING supportDirPath;
NUMBER supportDirPathBuffer;
begin
supportDirPathBuffer = MAX_PATH;
if(MsiGetProperty(hMSI, "CustomActionData", supportDirPath, supportDirPathBuffer) == ERROR_SUCCESS) then
SprintfBox(INFORMATION,"Deferred Execution","The value of SUPPORTDIR is %s",supportDirPath);
SprintfBox(INFORMATION,"Deferred Execution","The value of InstallScript's SUPPORTDIR is %s",SUPPORTDIR);
endif;

end;


4. 在Custom Actions and Sequences中创建一个InstallScript的自定义操作叫DisplaySupportDir。如下设置这个自定义操作,

・ Function Name: DisplaySupportDir
・ In-Script Execution: Deferred Execution in System Context

・ Install Exec Sequence: After GetSUPPORTDIR


P.S翻译来自InstallSheild2008的help资料

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值