Silent Install Workday OfficeConnect with SCCM / MECM
Microsoft Configuration Manager (MECM, formerly SCCM) is still the dominant on-prem software-deployment tool in many organizations. This guide packages Workday OfficeConnect as an Application in MECM, with silent install, supersedence-aware upgrade behavior, and reliable detection.
For Intune, see Intune Win32 Packaging. For tenant configuration after install, see Deploy Tenants via Registry.
What you’ll need
- MECM admin access with Application creation rights
- The latest Workday OfficeConnect installer (MSI or EXE) from your Workday community download
- A distribution point that target devices can reach
- A test machine with the MECM client healthy
Step 1 — Stage the installer in MECM source
\\mecm-source\Apps\Workday\OfficeConnect\2026R1\ (use the OfficeConnect release version, not your internal app version). Drop the installer in.For installers that need pre/post actions (registry tweaks, log capture), wrap the install in a PowerShell script:
# install-officeconnect.ps1
$ErrorActionPreference = "Stop"
$installer = Join-Path $PSScriptRoot "OfficeConnectSetup.exe"
Start-Process -FilePath $installer -ArgumentList "/quiet /norestart" -Wait -PassThru | Out-Null
exit $LASTEXITCODE
Otherwise, the installer can be called directly in the MECM install command.
Step 2 — Create the Application in MECM
- Name:
Workday OfficeConnect 2026R1 - Manufacturer:
Workday - Software version: match the installer
- Optional reference: internal Jira ticket or change number
- Content location:
\\mecm-source\Apps\Workday\OfficeConnect\2026R1\ - Persist content in client cache: unchecked unless you have a specific reason
OfficeConnectSetup.exe /quiet /norestart
Or if using the PowerShell wrapper:
powershell.exe -ExecutionPolicy Bypass -File install-officeconnect.ps1
Uninstall command:
OfficeConnectSetup.exe /uninstall /quiet /norestart
Add a detection rule based on the installed file:
- Setting Type: File System
- Type: File
- Path:
%ProgramFiles%\Adaptive Insights\OfficeConnect\ - File or folder name:
OfficeConnect.dll - Detection criteria: The file system setting must exist
- Optionally add a version comparison if the DLL carries a version stamp matching the release
Avoid registry-based detection alone — registry keys for OfficeConnect aren’t fully reliable across versions.
- Installation behavior: Install for system
- Logon requirement: Whether or not a user is logged on
- Installation program visibility: Hidden
- Maximum allowed run time: 30 minutes (generous)
- Estimated installation time: 5 minutes
Windows 10 (64-bit) or Windows 11. Filter your collection separately if you have additional constraints.Step 3 — Deploy
- Action: Install
- Purpose: Required (mandatory) for the primary rollout; Available for opt-in pilots
- Schedule: As soon as possible (test deploys) or per a maintenance window
- User notifications: Display in Software Center and only show notifications for computer restarts (avoid noisy popups)
- Suppress device restarts: unchecked — OfficeConnect typically doesn’t require restart but the option keeps you safe
Step 4 — Handle upgrades with Supersedence
When the next OfficeConnect release ships:
\\mecm-source\Apps\Workday\OfficeConnect\2026R2\).Verify on a test machine
On the test machine:
Configuration Manager Properties → Actions → Application Deployment Evaluation Cycle → Run Now.C:\Windows\CCM\Logs\AppEnforce.log to confirm the install runs successfully.Common gotchas
- Detection method too narrow: A registry-key-only detection often misses upgrade scenarios. File-based detection is more reliable.
- User vs system install: If users complain OfficeConnect is missing despite the deploy succeeding, the installer may have run per-user instead of per-machine. See Per-User vs Per-Machine Install (coming soon).
- Conflict with other Excel COM add-ins: A successful install on a machine that already has think-cell loaded can mask refresh failures — see think-cell Conflict.
- Workday version compatibility: Make sure the version you’re deploying is accepted by your Workday tenant. See the Version Compatibility Matrix.
Result
Workday OfficeConnect deploys silently across MECM-managed devices, upgrades cleanly on each release via supersedence, and is detected reliably on subsequent inventories.
Next steps
- Deploy Tenants via Registry — push tenant configuration in the same wave.
- Intune Win32 Packaging — the Intune equivalent for cloud-managed devices.
- Upgrade Governance (coming soon) — managing the forced-upgrade cadence at scale.