Unattended Installation of XenServer Tools

Unattended Installation of XenServer Tools

book

Article ID: CTX137027

calendar_today

Updated On:

Description

This article describes about the unattended installation of XenServer Tools using Microsoft’s Windows Installer program, msiexec.

Background

XenTools delivered with XenServer 6.1 version are able to make use of Microsoft’s Windows Installer program, msiexec. One of those is a way to install XenTools in silent, unattended manner.

Note: Unattended Installation is installation which does not require user interaction. Silent installation is the one which does not indicate the progress of installation.

Requirements

  • XenServer version 6.1

  • Supported Windows guest VM with no tools installed yet

  • Installed Microsoft .NET Framework Version 4.0 or later

Unattended Installation of XenServer Tools

XenTools are delivered as msiexec installation package. Use the following switches for the corresponding purposes:

  • Unattended installation with automatic reboot
    msiexec.exe /i d:\installwizard.msi /passive

  • Silent unattended installation (no UI) with automatic reboot
    msiexec.exe /i d:\installwizard.msi /quiet

  • Silent unattended installation, no automatic reboot
    msiexec.exe /i d:\installwizard.msi /quiet /norestart

  • Silent unattended installation with no automatic reboot and log file
    msiexec.exe /i d:\installwizard.msi /Lv c:\install.log.txt /quiet /norestart

More information

Microsoft Technet library on Msiexec (Command-Line options).

Issue/Introduction

This article describes about the unattended installation of XenServer Tools using Microsoft’s Windows Installer program, msiexec