Installing a shortcut that opens a web page
In the previous recipes, we added a shortcut to our software on the Start menu. We can also add a shortcut to a web page—perhaps one where the user can find information about other related products. It's a great way to keep the resources front and center. In this recipe, we'll add a shortcut to the Start menu that opens the website, http://www.packtpub.com.
Getting ready
To prepare for this recipe, create a new setup project and name it WebPageShortcutInstaller
.
How to do it...
Include an InternetShortcut
element from UtilExtension
to create a shortcut to a website, as shown in the following steps:
- Add
UtilExtension
to the project by right-clicking on the References node in Solution Explorer and navigating to Add Reference... | WixUtilExtension.dll | Add | OK. - Add the
util
namespace to theWix
element:<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"...