
We run Outlook 2013 and we run Microsoft Dynamics CRM 2015 for Microsoft Outlook Version :7.0.0000.3543
I'm trying to deploy the update (CRM2015-Client-KB3072333-ENU-Amd64.exe) to 300+ windows 8.1 machines but the /silent and /passive switches dont seem to work.
The idea is to script this via sccm and deploy it with ease without any user interaction.
I run this command elevated as admin
CRM2015-Client-KB3072333-ENU-Amd64.exe /silent /norestart
or
CRM2015-Client-KB3072333-ENU-Amd64.exe /passive /norestart
But i continue to receive the pop up below:
Thanks
Dan
*This post is locked for comments
I have the same question (0)Hi dv81,
The way I used to perform silent installs was by using a config file, the steps were something like:
Extract installation files to directory from the command line e.g.:
CRM2015-Client-KB3072333-ENU-Amd64.exe /extract
Run silently:
SetupClient.exe /Q /L "D:\PathToLogs\CRMOutlookLog.log" /i "D:\PathToConfig\config.xml"
Where config file looks like:
<Deployments>
<TargetDir>C:\Program Files\Microsoft Dynamics CRM\Client</TargetDir>
<InstallOfflineCapability>false</InstallOfflineCapability>
</Deployments>
technet.microsoft.com/.../hh699665(v=crm.7).aspx
Hopefully this helps.
Regards,
Sean