具有自动启动功能的 Visual Studio 2010 安装项目
我有 .NET4 项目,其中包含 Visual Studio 2010 中的设置向导。 在快捷方式中,我想要执行安装程序项目,该项目会自动将我的应用程序添加到自动启动并在成功安装后启动她。
I have .NET4 project with setup wizard from Visual studio 2010.
In shortcut I want do installer project who automatically add my application to autostart and start her after successfull installation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
让安装程序添加启动文件夹的快捷方式,或将注册表项添加到 HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run 或 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run。 reg 键的名称可以是任何内容,例如您的应用程序的名称,值是可执行文件的路径。
Make your installer add shortcut to startup folder, or add registry key to HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run or HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run. Name of reg key is anything, name of your app in example, and value is path to executable.
Visual Studio 2010 中的 Windows Intaller 没有此功能。
Windows Intaller from Visual Studio 2010 don't have this feature.