| ID | Requirement |
|----|--------------|
| FR1 | Provide an official tool or method (e.g., Office Deployment Tool) to generate a full offline installation source for Office 365. |
| FR2 | Support download of 32-bit and 64-bit versions of Office 365 ProPlus / Microsoft 365 Apps. |
| FR3 | Include all core applications: Word, Excel, PowerPoint, Outlook, OneNote, Publisher, Access (depending on license). |
| FR4 | Allow selection of language packs (e.g., Spanish, English) in the offline package. |
| FR5 | Generate a setup executable or script (setup.exe / install.bat) that runs entirely offline after download. |
| FR6 | Provide an integrity check (SHA-256 hash) for the downloaded offline folder/ISO. |
| FR7 | Support update channel selection (Current, Monthly Enterprise, Semi-Annual Enterprise). |
| FR8 | Option to create an ISO image from the offline source for easy transport and mounting. |
Microsoft recomienda oficialmente la versión de 64 bits.
Antes de explicar el proceso, entendamos las ventajas: descargar instalador de office 365 offline
Aclaración importante: Microsoft ya no ofrece un simple archivo .exe de 4 GB en su sitio público. El método oficial requiere usar la Herramienta de implementación de Office (ODT) o descargar la imagen ISO desde el portal de administración de Microsoft 365.
Es la herramienta de terceros más reputable y utilizada. | ID | Requirement | |----|--------------| | FR1
El archivo configuration.xml le dice a la herramienta qué descargar. Este es el paso más crítico. Puedes crear un archivo nuevo llamado config.xml o editar uno existente.
Ejemplo de código XML para descargar la versión de 64 bits en español (España): Microsoft recomienda oficialmente la versión de 64 bits
<Configuration>
<Add SourcePath="C:\Office365"
OfficeClientEdition="64"
Channel="Current">
<Product ID="O365ProPlusRetail">
<Language ID="es-es" />
</Product>
</Add>
</Configuration>
Explicación de los parámetros clave:
Language ID: es-es (Español de España), es-mx (Español de México).Dentro de esta carpeta encontrarás varios archivos .xml de ejemplo y un archivo ejecutable llamado setup.exe. Este setup.exe es el motor que realizará la descarga y la instalación.