Deploying an Add-In
This last section of the Windows Home Server programming tutorial walks through the steps to create an MSI package and deploy a Windows Home Server add-in. For your add-in to work, you must copy the application files for your add-in to the %systemdrive%\Program Files\Windows Home Server\ directory on the server. The sample Windows Home Server application that you create in this programming tutorial consists of a single .dll file that contains a Windows Home Server Console tab and an associated Windows Home Server Settings tab. To make your add-in available for installation, you must deploy it to a computer that is running Windows Home Server.
Note
Express Editions of Visual Studio are not capable of creating deployment projects. For testing purposes and for limited deployment, you can compile your project and copy the output .dll file to the C:\Program Files\Windows Home Server\ directory on the server and then restart the Windows Home Server console. Note that a directory by this name exists on both the client and the server. The add-in will only be visible if the .dll file is copied to the server directory.
The recommended method for deploying your add-in is to create an MSI package. This tutorial discusses two popular methods for creating an MSI package: an MSI that is created using a Visual Studio Setup project, and one that is based on Windows Installer XML (WiX) and that uses the Visual Studio development system.
You can create an MSI package by using a Visual Studio Setup project and then using ORCA to edit the properties of your MSI package. You need to edit the MSI package properties so that you can add the WHSLogo
property. Adding this property and setting it to a value of 1 enables Windows Home Server to recognize the MSI package as a Windows Home Server add-in.
For step-by-step instructions, see Creating an MSI Package Using a Visual Studio Setup Project.
For information about how to download and use ORCA, see the MSDN Web site (https://go.microsoft.com/fwlink/?LinkId=94640).
To create an MSI package based on WiX using Visual Studio, you can download Votive. You can use Votive to create WiX-based MSI packages through the Visual Studio Integrated Development Environment (IDE).
Votive 2.0 is compatible with Visual Studio 2005. For instructions on using Votive 2.0 and Visual Studio 2005 to create an MSI package, see Creating a WiX Based MSI Package Using Visual Studio 2005.
Votive 3.0 is compatible with Visual Studio 2008. For instructions on using Votive 3.0 and Visual Studio 2008 to create an MSI package, see Creating a WiX Based MSI Package Using Visual Studio 2008.
For information about how to download and use Votive, see “Windows Installer XML (WiX) Toolset” on the SourceForge website.
To deploy the SDKSample add-in, you must copy the MSI file, InstallSDKSample.msi, from your development computer to the \\ServerName\Software\Add-ins\ folder on the computer that is running Windows Home Server. MSI packages that conform to the Windows Home Server MSI requirements and that are placed in this folder are visible in the Windows Home Server Settings dialog on the Add-ins tab, in the Available section.
- For step-by-step instructions, see Deploying the Add-In MSI.
Extending the Windows Home Server Console
Setting Up an Add-In Solution
Creating a Console Tab
Creating a Settings Tab