我正在使用WiX SDK創建安裝程序。安裝程序完成後,我想使用下面的代碼打開Excel文件(.xls)。我可以在安裝文件夾中看到該文件。不幸的是安裝結束後沒有任何反應。安裝WIX後打開Excel文件
<Property Id="WixShellExecTarget" Value="[#test.xls]" />
<CustomAction Id="LaunchFile"
BinaryKey="WixCA"
DllEntry="WixShellExec"
Impersonate="yes" />
<InstallExecuteSequence>
<Custom Action='LaunchFile' After='InstallFinalize'>NOT Installed</Custom>
</InstallExecuteSequence>