Install and configure HIS 2016
This installation guide provides basic instructions for using the Host Integration Server 2016 setup installation and configuration.
Before you begin
Read the Release Notes
Refer to the System Requirements
Installation
Double-click the HIS2016_Server_EN.msi file.
In the License Agreement, accept the End User License Agreement. To customize your installation (optional):
Select Advanced.
In Destination Folder, you can optionally change the installation drive and directory.
In Product Features, you can optionally choose the feature areas, tools, and sub features.
Select Install to continue.
When complete, select Finish.
Configuration
After you successfully install HIS, run configuration to:
Define security groups
Enter service credentials
Enable (configures) or disable (un-configures) features and tools. For example, configuration registers BizTalk Adapters and Visual Studio design tools.
Uninstall
Open Programs and Features.
In the list, select Microsoft Host Integration Server 2016, and then select Uninstall.
When prompted if you're sure, select Yes.
Unattended Installation
Install using the following command:
msiexec /i HIS2016_Server_EN.msi /quiet
Note: A setup log will be written to the %temp% folder
Verify the installation by going to drive:\Program Files\Microsoft Host Integration Server 2016, and confirming the HIS files are there.
Uninstall using the following command:
msiexec /x HIS2016_Server_EN.msi /quiet
Note: A setup log will be written to the %temp% folder
Verify the uninstallation by going to drive:\Program Files\Microsoft Host Integration Server 2016, and confirming the files are removed.
For a list of MSIEXEC command line options, read the Installer documentation (https://go.microsoft.com/fwlink/p/?LinkId=799793).
Unattended Configuration
Configure using the command:
ConfigurationWizard.exe /APPLY HIS2016.configurationfile.config
The config file can be created by running the Configuration Wizard as a UI program – either by running ConfigurationWizard.exe with no parameters or running Configuration under the Microsoft Host Integration Server 2016 programs list.
Unconfigure using the command:
ConfigurationWizard.exe /u
Unattended Installation and Configuration
Install and Configure using the command:
msiexec /i HIS2016_Server_EN.msi /quiet CONFIGURATIONFILE= HIS2016.configurationfile.config
Disable Telemetry
Opt-out through UI
On the Common setting panel of the Configuration tool, uncheck Turn on Telemetry to help improve the quality, reliability and performance.
Opt-out through PowerShell
You can use the following PowerShell script to enable or disable telemetry:
Import-Module Microsoft.HostIntegration.PowerShell
$c = Import-HisConfiguration
$cs = $c | Get-HisFeature -CommonSettings
$cs.EnableTelemetry = $false
$c.Apply()