maxpayne
maxpayne

Reputation: 1111

How to open a web page at the end of installation using visual studio C ++ deployment?

Is there any way in visual studio 2010 C++ setup deployment to open a webpage at the end of installation?

I can do this with Inno Setup, but I don't want to be in trouble with another setup.

I simply want to link a webpage in Visual Studio Setup Deployment that should execute after the installation get done.

Thanks a lot.

Upvotes: 0

Views: 53

Answers (1)

PhilDW
PhilDW

Reputation: 20790

You can't edit the existing dialogs in a VS setup project, so I suspect you need a custom action (program) that does an "open" on the URL, and that will launch the appropriate browser. You probably need to make that asynchronous because installs generated by VS setups wait for the custom action to finish, so be sure to finish the program.

Upvotes: 1

Related Questions