====== Créer un package Project 2016 ======
Source : [[https://www.microsoft.com/en-us/download/details.aspx?id=49117]]
\\
Office Deployment Tool\\
\\
SETUP [mode] [path]\\
\\
SETUP /download [path to configuration file]\\
SETUP /configure [path to configuration file]\\
SETUP /packager [path to configuration file] [output path]\\
SETUP /help\\
\\
/download Downloads files to create an Office installation source\\
/configure Adds, removes, or configures an Office installation\\
/packager Produces an Office App-V package from an Office installation source\\
/help Displays this message\\
\\
===== Fichier XML =====
Project.xml
===== Batch =====
download.project.bat
@echo off
Set vCommand="%~dp0setup.exe" /download "%~dp0Project.xml"
%vCommand%
Exit /B %errorlevel%
install.project.bat
@echo off
Set vCommand="%~dp0setup.exe" /configure "%~dp0Project.xml"
%vCommand%
Exit /B %errorlevel%