Microsoft Azure Active Directory Connection

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search

A silent installer for Microsoft Azure Active Directory Connection.

This is used to manage Azure AD for Office 365.

<?xml version="1.0" encoding="UTF-8"?>

<packages>

	<package
		id="microsoft-azure-ad-connection"
		name="Microsoft Azure AD Connection"
		revision="%version%"
		priority="20">

		<variable name="version" value="1.1.166.0" />
		
		<check type="uninstall" condition="versiongreaterorequal" path="Microsoft Azure Active Directory Module for Windows PowerShell" value="%version%" />
		
		<install cmd="msiexec.exe /i &quot;%SOFTWARE%\Microsoft\Azure Active Directory Connection\AdministrationConfig-V%version%-GA.msi&quot; /qn /norestart">
			<exit code="0" />
			<exit code="3010" />
		</install>
 
		<upgrade include="install" />
 
		<remove cmd="msiexec.exe /x &quot;%SOFTWARE%\Microsoft\Azure Active Directory Connection\AdministrationConfig-V%version%-GA.msi&quot; /qn /norestart">
			<exit code="0" />
			<exit code="1605" />
			<exit code="1614" />
			<exit code="3010" />
		</remove>
		
		<depends package-id="microsoft-ossia" />
		
	</package>

</packages>

Note: This package depends on Microsoft Online Services Sign-In Assistant. You will need to also include that package as well, or remove the dependency to deploy this package.