tadghh / office-ltsc

A configuration file to be used with Office Deployment tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Office LTSC

A configuration file to be used with Office Deployment Tool

New configurations can be created with Office Customization Tool

Usage

The below command will start the installation with the provieded configuration.

  • Assuming the below mentioned files are located in the same location
  • Setup.exe refers to Office Deployment Tool
.\setup.exe /configure .\OfflineOfficeLTSC.xml

One liner

Copy and paste this whole command into powershell.

Invoke-WebRequest -Uri "https://officecdn.microsoft.com/pr/wsus/setup.exe" -OutFile "$env:TEMP\Office-Deployment-Tool.exe";
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/tadghh/office-ltsc/main/OfflineOfficeLTSC.xml" -OutFile "$env:TEMP\OfflineOfficeLTSC.xml";
Set-Location $env:TEMP;
.\Office-Deployment-Tool.exe /configure .\OfflineOfficeLTSC.xml;
Remove-Item ("$env:TEMP\Office-Deployment-Tool.exe"),("$env:TEMP\OfflineOfficeLTSC.xml") -Force;

Info

  • Version: Office LTSC Professional Plus 2021 - VL
  • Language: English (United States)
  • Auto Shut down running applications
  • Non-Silent (Install UI will be displayed)
  • Uninstalls MSI versions of
    • Visio
    • Project
    • SharePoint Designer
    • InfoPath
  • Installs
    • Word
    • Excel
    • PowerPoint

Changes

About

A configuration file to be used with Office Deployment tool