MDT Silent Installs

Welcome to the MDT Silent Installs repository, if you have a recommendation please leave a comment below!

Microsoft products

Teams

Download URL: x64 x32

Further Reading: Install Teams using Microsoft Endpoint Configuration Manager – Microsoft Teams | Microsoft Docs

Command x64: msiexec /i Teams_windows_x64.msi OPTIONS=”noAutoStart=true” ALLUSERS=1 /qn

Command x86: msiexec /i Teams_windows.msi OPTIONS=”noAutoStart=true” ALLUSERS=1 /qn

New Edge (Chromium based)

Download URL: https://www.microsoft.com/en-us/edge/business/download

Command: msiexec /I “MicrosoftEdgeEnterpriseX64.msi” /qn

OneDrive – Individual

Download URL: https://go.microsoft.com/fwlink/?linkid=844652

Command: OneDriveSetup.exe /silent

OneDrive – All Users

Installs for all users and pulls the latest installer from Microsoft

PowerShell Script to be saved to DeploymentShare\Scripts as OneDriveForAll.ps1

Command: powershell.exe -file “%ScriptRoot%\OneDriveForAll.ps1

$OneDriveClient = "https://go.microsoft.com/fwlink/?linkid=844652"
$output = "$ENV:temp"  + '\OneDriveSetup.exe'
$apppath = "C:\Program Files (x86)\Microsoft OneDrive\OneDrive.exe"
$action = New-ScheduledTaskAction -Execute $apppath
$trigger = New-ScheduledTaskTrigger -Once -At (Get-Date)
 
Invoke-WebRequest -Uri $OneDriveClient -OutFile $output
Start-Process -FilePath $output -ArgumentList '/allusers', '/silent'
Start-Sleep -Seconds 60

Register-ScheduledTask -Action $action -Trigger $trigger -TaskName "Launch OneDrive" | Out-Null
Start-ScheduledTask -TaskName "Launch OneDrive"
Start-Sleep -Seconds 5
Unregister-ScheduledTask -TaskName "Launch OneDrive" -Confirm:$false

Office 2019

You will need an XML configuration file to silently install Office 2019 and the Office Deployment tool.

Download URL: https://www.microsoft.com/en-us/download/confirmation.aspx?id=49117

XML File

You can change the XML file to suite your needs. There is a good generator Microsoft provide here.

<Configuration>

  <Add OfficeClientEdition="32" Channel="PerpetualVL2019">
    <Product ID="ProPlus2019Volume">
      <Language ID="en-us" />
    </Product>

  </Add>

<RemoveMSI All="True" />
<Display Level="None" AcceptEULA="TRUE" />
<Property Name="AUTOACTIVATE" Value="1" />

</Configuration>

Command for Web based install: setup.exe /configure configuration.xml

Command for Local download: setup.exe /download configuration.xml

Command for Local install once downloaded: setup.exe /configureconfiguration.xml

Kodu

Download URL: https://kodugamelab.blob.core.windows.net/blob/Builds/KoduSetup_1.6.12.0.msi

Command: msiexec /I “KoduSetup.msi” /qn

In order for Kodu to work you will also need to install XNA Framework

XNA Framework

Download URL: https://www.microsoft.com/en-gb/download/details.aspx?id=27598

Command: msiexec /I “xnafx_redist.msi” /qn

Adobe Products

Adobe Reader

Download URL: https://get.adobe.com/uk/reader/enterprise/

Extract the MSI: AcroRdrDC*.exe -sfx_o”C:\temp\AcroReadMSI” -sfx_ne

When adding to MDT you must include all the extracted files

Command: msiexec.exe /I “AcroRead.msi” /qn

Google Products

Chrome

Download URL: https://teams.microsoft.com/downloads/desktopurl?env=production&plat=windows&arch=x64&managedInstaller=true&download=true

Command: msiexec /I “googlechromestandaloneenterprise64.msi” /qn

Backup Products

Veeam Latest @ March 22

https://download2.veeam.com/VBR/v11/VeeamBackup&Replication_11.0.1.1261_20220302.zip

Windows Deployment

ADK Win PE

https://download.microsoft.com/download/5/5/e/55e3e34a-5708-46cd-a90d-92044c29336b/adkwinpeaddons/adkwinpesetup.exe

ADK Setup

https://download.microsoft.com/download/1/f/d/1fd2291e-c0e9-4ae0-beae-fbbe0fe41a5a/adk/adksetup.exe

Deployment Toolkit

https://www.microsoft.com/en-us/download/confirmation.aspx?id=54259

Educational focused

Smart Notebook 11.4

Download URL: No longer available

Command: msiexec /i “[Path]\SMARTEducationSoftware.msi” TRANSFORMS=”1033.mst” ACTIVATE_LICENSE=1 INSTALL_BOARD=1 INSTALL_NOTEBOOK=1 NB_PROD_KEY=NB-XXXXX-XXXXX-XXXXX-XXXXX PRODUCT_NOTIFICATION=0 FULL_GALLERY=1

Found priceless insights in this blog? Support the author’s creativity – buy them a coffee!