Naar inhoud

Winkelwagen

Je winkelwagen is leeg

Office 2013-2024 C2r Install And Install Lite V... Link Review

Office 2013–2024 C2R Install & Install Lite Handbook

Purpose

Audience

Scope

Key Concepts

Preparation Checklist

  1. Inventory
    • Office versions currently in use.
    • Client OS builds and architecture (x86/x64).
    • Network bandwidth and cache/proxy capabilities.
    • Licensing type: volume (MAK/KMS), retail, or Microsoft 365.
    • Required apps: Word, Excel, PowerPoint, Outlook, Access, Publisher, OneDrive, Teams.
  2. Prerequisites
    • Administrative privileges or GPO deployment permissions.
    • ODT (latest) and access to Microsoft CDN or an internal file share.
    • Windows updates up-to-date for supported Office version.
  3. Backups
    • Document user customizations, add-ins, and templates.
    • Back up application data (Outlook PSTs if applicable) where policies require.

Office Deployment Tool (ODT) — Basics

Minimal example XML — Full install (x64, English) Office 2013-2024 C2R Install and Install Lite v...

<Configuration>
  <Add OfficeClientEdition="64" Channel="Current" Version="Latest">
    <Product ID="O365ProPlusRetail">
      <Language ID="en-us" />
    </Product>
  </Add>
  <Display Level="None" AcceptEULA="TRUE" />
</Configuration>

Minimal example XML — Install Lite (x64, only Word & Excel, no Teams)

<Configuration>
  <Add OfficeClientEdition="64" Channel="MonthlyEnterprise" Version="Latest">
    <Product ID="O365ProPlusRetail">
      <Language ID="en-us" />
      <ExcludeApp ID="Access" />
      <ExcludeApp ID="InfoPath" />
      <ExcludeApp ID="Lync" />
      <ExcludeApp ID="OneNote" />
      <ExcludeApp ID="Outlook" />
      <ExcludeApp ID="PowerPoint" />
      <ExcludeApp ID="Publisher" />
      <ExcludeApp ID="Teams" />
    </Product>
  </Add>
  <Updates Enabled="TRUE" Channel="MonthlyEnterprise" />
  <Display Level="None" AcceptEULA="TRUE" />
</Configuration>

Install Lite Strategy

Downloading and Creating an Offline Source

<Configuration>
  <Add OfficeClientEdition="64" Channel="Current">
    <Product ID="O365ProPlusRetail">
      <Language ID="en-us" />
    </Product>
  </Add>
  <Options>
    <SourcePath>\\fileserver\OfficeC2R\Office64</SourcePath>
  </Options>
</Configuration>

Update Management

<Configuration>
  <Updates Enabled="TRUE" UpdatePath="\\fileserver\OfficeUpdates" />
</Configuration>

Activation & Licensing

Examples: Common Deployment Scenarios

  1. Small office, M365 subscription, minimal apps (Word, Excel)
    • Use ODT Install Lite XML with Product ID O365BusinessRetail (or appropriate SKU), exclude all nonessential apps, Channel = MonthlyEnterprise, SourcePath to CDN unless bandwidth constrained.
  2. Enterprise with SCCM
    • Download full setup to a distribution point; create Application in SCCM using setup.exe /configure and targeted collections; manage updates with Software Update Point.
  3. RDS/VDI (shared activation)
    • Use Microsoft 365 Apps with Shared Computer Activation enabled in XML and Azure AD conditional access for licensing.

Example: Install Lite XML with Shared Computer Activation

<Configuration>
  <Add OfficeClientEdition="64" Channel="SemiAnnualEnterprise">
    <Product ID="O365BusinessRetail">
      <Language ID="en-us" />
      <ExcludeApp ID="Access" />
      <ExcludeApp ID="Publisher" />
    </Product>
  </Add>
  <Property Name="SharedComputerLicensing" Value="1" />
  <Display Level="None" AcceptEULA="TRUE" />
</Configuration>

Performance & Footprint Considerations

Security & Patch Management

Troubleshooting Checklist

Logging & Diagnostics

Rollback & Uninstall

<Configuration>
  <Remove All="TRUE" />
  <Display Level="None" AcceptEULA="TRUE" />
</Configuration>

Best Practices Summary

Appendix: Common Product IDs (examples—verify against Microsoft docs for exact SKU mapping)

Change Log & Versioning

If you want, I can:


4. Language and Architecture Control

The tool simplifies the installation of language packs and allows for the forced installation of specific architecture versions (x86 or x64), regardless of the underlying OS architecture.

Technical Functionality

The utility functions by interfacing with the official Microsoft Office Content Delivery Network (CDN). It creates the necessary configuration XML files automatically based on user input and invokes the official Office Deployment Tool (setup.exe) to download and install the files. It effectively automates the complex command-line syntax usually required for custom C2R deployments. Office 2013–2024 C2R Install & Install Lite Handbook

Part 8: Safety and Security Best Practices

Because these tools are unsigned and modify system licensing components, you must take precautions:

  1. Download only from trusted sources – Checksum verification is a must. Compare MD5/SHA1 hashes with the author’s post.
  2. Run in a virtual machine first – Use VMware or VirtualBox to test the tool.
  3. Disable real-time AV temporarily – Not ideal, but many AVs quarantine the KMS files instantly.
  4. Use after a fresh Windows backup – Create a system restore point before installing.
  5. Avoid on work computers – Corporate networks actively detect KMS emulation, leading to potential disciplinary action.

Part 7: Common Errors and Troubleshooting

Error 0-1011 (Installation Failed)