unattended install of xen tools in windows vm

XenTools are delivered as msiexec installation package

  • 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


Authors:
  • Jochen Schnuerle