This article describes about the unattended installation of XenServer Tools using Microsoft’s Windows Installer program, msiexec.
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.
XenServer version 6.1
Supported Windows guest VM with no tools installed yet
Installed Microsoft .NET Framework Version 4.0 or later
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
Microsoft Technet library on Msiexec (Command-Line options).