简体   繁体   English

设置完成后如何启动Excel应用程序?

[英]How to launch Excel application when setup is complete?

I made an installer using WIX and added a checkbox to setup with purpose to start Excel if its checked. 我使用WIX进行了安装,并添加了一个复选框进行设置,目的是在选中Excel的情况下启动Excel。 But I don't now what to put in custom action. 但是我现在不该执行自定义操作。 This is a code for checkbox from here : 这是来自此处的复选框代码:

<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Launch Microsoft Excel" />  
 <Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOX" Value="1" /> 
 <Property Id="EXCELSRCH"> 
    <RegistrySearch Id="ExcelSearch" Root="HKLM" Key="SOFTWAREMicrosoftWindowsCurrentVersionApp Pathsexcel.exe" Name="Path" Type="raw" /> 
</Property> 

How do I make this checkbox work? 如何使此复选框起作用? PS I am completely newbie on Wix and programming at all. PS我完全是Wix和编程方面的新手。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 安装完成后启动应用程序 - Launch Application after Installation is complete 如何创建具有启动条件的安装文件 - how to create a setup file with launch condition 使用Visual Studio 2010安装项目安装后启动应用程序 - Launch an Application After Installing using Visual Studio 2010 Setup Project 在.net应用程序中使用Active Directory安装程序时如何获取LastActivityDate - How to get LastActivityDate when using Active Directory Setup in a .net application 通过控制台应用程序设置作业时如何访问hangfire仪表板 - How to access hangfire dashboard when jobs are setup via console application 如何在C#安装项目中完成设置时自动启动我的应用程序 - How to automatically start my application when my setup is done in C# setup project 在Windows 8中启动任何应用程序时,如何启动我的C#应用​​程序? - How to launch my C# application when any application starts in Windows 8? 通过链接启动应用程序时出现System.UnauthorizedAccessException - System.UnauthorizedAccessException when launch application by link 在应用程序启动时检查启动Uri - Check Launch Uri when Application Starts 如何在 DataGridView 中使用 Excel 标头显示完整的 Excel 数据? 当我将标题放在 OleDB Connection 上时,单元格变为空 - How to show complete Excel data with Excel Headers in DataGridView? Cells becomes empty when I put headers on OleDB Connection
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM