├── .github └── ISSUE_TEMPLATE │ ├── bug-report.yaml │ └── feature-request.yaml ├── .gitignore ├── LICENSE ├── NOTICE.md ├── README-ar-sa.md ├── README-de_de.md ├── README-en_gb.md ├── README-es_es.md ├── README-fr_fr.md ├── README-hu_hu.md ├── README-id_id.md ├── README-it_it.md ├── README-ko_kr.md ├── README-nl_nl.md ├── README-pl_pl.md ├── README-ro_ro.md ├── README-ru_ru.md ├── README-th_th.md ├── README-tr_tr.md ├── README-zh_cn.md ├── README-zh_tw.md ├── README.md ├── config ├── Launcher │ └── Locales.json └── Message │ └── end_of_support.json ├── doc ├── Tech Articles │ ├── Channels.md │ ├── Languages.md │ └── Products.md └── XML Configurations │ └── Example.xml └── src ├── OfficeToolPlus └── Dictionaries │ ├── Languages │ ├── ar-sa.xaml │ ├── de-de.xaml │ ├── en-gb.xaml │ ├── en-us.xaml │ ├── es-es.xaml │ ├── fr-fr.xaml │ ├── hu-hu.xaml │ ├── id-id.xaml │ ├── it-it.xaml │ ├── ja-jp.xaml │ ├── ko-kr.xaml │ ├── nl-nl.xaml │ ├── pl-pl.xaml │ ├── pt-br.xaml │ ├── ro-ro.xaml │ ├── ru-ru.xaml │ ├── th-th.xaml │ ├── tr-tr.xaml │ ├── uk-ua.xaml │ ├── vi-vn.xaml │ ├── zh-cn.xaml │ └── zh-tw.xaml │ ├── ProductsName │ ├── en-gb.xaml │ ├── en-us.xaml │ ├── es-es.xaml │ ├── fr-fr.xaml │ ├── it-it.xaml │ ├── ja-jp.xaml │ ├── ko-kr.xaml │ ├── nl-nl.xaml │ ├── tr-tr.xaml │ ├── uk-ua.xaml │ ├── vi-vn.xaml │ ├── zh-cn.xaml │ └── zh-tw.xaml │ └── README.md └── scripts ├── Get-OfficeToolPlus.ps1 └── Invoke-Commands.ps1 /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: Submit a bug report to help us resolve issue. 3 | title: "[Bug] " 4 | labels: ["bug"] 5 | assignees: 6 | - YerongAI 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | Thank you for helping us improve our software, we just need some information below. 12 | - type: input 13 | id: version 14 | attributes: 15 | label: What is the version of Office Tool Plus? 16 | description: You can find it on the About page or on the package name. 17 | placeholder: ex. v10.0.0.0 (x64) 18 | validations: 19 | required: true 20 | - type: input 21 | id: os-version 22 | attributes: 23 | label: What is the version of your Operating System? 24 | placeholder: ex. Windows 11 24H2 build 26100 (x64) 25 | validations: 26 | required: true 27 | - type: input 28 | id: error-description 29 | attributes: 30 | label: What is the error? 31 | description: The error can be a sentence or an error code. 32 | validations: 33 | required: true 34 | - type: textarea 35 | id: steps 36 | attributes: 37 | label: How does this problem occur? 38 | description: Steps required to reproduce the problem, or anything you did before the problem occurred. More detailed information and additional screenshots can help us locate the issue more quickly. 39 | validations: 40 | required: true 41 | - type: textarea 42 | id: logs 43 | attributes: 44 | label: Log output 45 | description: You can find the log on %temp%\OTP_Logs, or enable log output by running "Office Tool Plus.Console" /log 46 | render: shell 47 | validations: 48 | required: false 49 | - type: textarea 50 | id: others 51 | attributes: 52 | label: Anything else you want to tell us 53 | description: If you have any more information please let us know. 54 | validations: 55 | required: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yaml: -------------------------------------------------------------------------------- 1 | name: Feature request 2 | description: Suggest an idea for this project. 3 | title: "[IDEA] " 4 | labels: ["enhancement"] 5 | assignees: 6 | - YerongAI 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | Thank you for helping us improve our software, we just need some information below. 12 | - type: input 13 | id: description 14 | attributes: 15 | label: Feature description 16 | description: What is this new feature about? 17 | validations: 18 | required: true 19 | - type: textarea 20 | id: how-to-work 21 | attributes: 22 | label: How does it work? 23 | description: If you know how to implement this feature, please let us know your ideas. 24 | validations: 25 | required: false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Object files 5 | *.o 6 | *.ko 7 | *.obj 8 | *.elf 9 | 10 | # Linker output 11 | *.ilk 12 | *.map 13 | *.exp 14 | 15 | # Precompiled Headers 16 | *.gch 17 | *.pch 18 | 19 | # Libraries 20 | *.lib 21 | *.a 22 | *.la 23 | *.lo 24 | 25 | # Shared objects (inc. Windows DLLs) 26 | *.dll 27 | *.so 28 | *.so.* 29 | *.dylib 30 | 31 | # Executables 32 | *.exe 33 | *.out 34 | *.app 35 | *.i*86 36 | *.x86_64 37 | *.hex 38 | 39 | # Debug files 40 | *.dSYM/ 41 | *.su 42 | *.idb 43 | *.pdb 44 | 45 | # Kernel Module Compile Results 46 | *.mod* 47 | *.cmd 48 | .tmp_versions/ 49 | modules.order 50 | Module.symvers 51 | Mkfile.old 52 | dkms.conf 53 | /Projects/OfficeToolPlus/.vs/OfficeToolPlus/v16 54 | /.vs 55 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Yerong 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- 1 | # NOTICES AND INFORMATION 2 | 3 | This software incorporates material from third parties. 4 | 5 | ## IsoCreator 6 | 7 | Author: [epurasu](https://sourceforge.net/u/epurasu/profile/) 8 | 9 | Source: 10 | 11 | Academic Free License 12 | 13 | ## Markdown.XAML 14 | 15 | Author: [Bevan Arps](https://github.com/theunrepentantgeek) 16 | 17 | Source: 18 | 19 | MIT License 20 | 21 | ## Material Design 22 | 23 | Author: [Austin Andrews](https://github.com/Templarian) 24 | 25 | Source: 26 | 27 | Pictogrammers Free License 28 | 29 | ## Material Design Icons 30 | 31 | Author: [Google](https://github.com/google) 32 | 33 | Source: 34 | 35 | Apache-2.0 license 36 | 37 | ## NuGet Packages 38 | 39 | - Downloader (3.3.4) 40 | - Microsoft.Xaml.Behaviors.Wpf (1.1.135) 41 | - Prism.DryIoc (9.0.537) 42 | - Prism.Wpf (9.0.537) 43 | - System.Management (9.0.2) 44 | - System.ServiceProcess.ServiceController (9.0.2) 45 | - System.IO.Hashing (9.0.2) 46 | -------------------------------------------------------------------------------- /README-ar-sa.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | release 11 | license 12 |

13 | 14 | > اداة قوية ومفيدة لتثبيت الاوفيس 15 | 16 | تدعم تثبيت وتنشيط المنتجات الاتية: 17 | 18 | - Microsoft 365 19 | - Office 2016, 2019, 2021, 2024 20 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2 21 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client 22 | 23 | :الوظائف والمميزات 24 | 25 | - انشاء اعدادات لتثبيت الاوفيس، يمكن حفظ ملف الاعداد او جلبه من الويب 26 | - تحميل الاوفيس، يدعم البرنامج جميع قنوات ولغات الاوفيس 27 | - تثبيت الاوفيس او تعديل النسخة المثبتة بالفعل، سواء اضافة منتجات او برامج، او ازالتهم 28 | - انشاء نسخة ايزو تدعم التثبيت الافتراضي والتثبيت الصامت 29 | - تنشيط الاوفيس. سواء تنشيط اونلاين او بالهاتف او تنشيط KMS 30 | - تدعم ادارة التنشيط والتراخيص والمفاتيح وتنشيط KMS 31 | - تغيير قناة تحديث الاوفيس مما يمكنك من الترقية او الانزال لنسخ مختلفة دون اعادة التثبيت 32 | - ازالة الاوفيس. فرض الازالة بالقوة عند عدم تمكنك من الازالة بالطريقة العادية وذلك لاوفيس 2003 حتى اخر اصدار 33 | - ادوات اوفيس مدمجة تشمل ادوات الاستعادة الافتراضية وادوات الاصلاح 34 | - تحويل ملفات الاوفيس مستخدما موقع الاوفيس الرسمي، بسهولة وثبات 35 | - تخصيص الواجهة كما تحب 36 | - اعدادات متقدمة للوصول الى خصائص مميزة، مثل تغيير قنوات الاوفيس الداخلية 37 | 38 | ## التحميل والبدء السريع 39 | 40 | - [تحميل](https://otp.landian.vip/download.html) 41 | - [التوثيق](https://otp.landian.vip/help/) 42 | 43 | Or download Office Tool Plus using PowerShell: 44 | 45 | ```powershell 46 | irm officetool.plus | iex 47 | ``` 48 | 49 | ## عنا 50 | 51 | © 2016-2025 Yerong. جميع الحقوق محفوظة. 52 | 53 | > المدونة [@Yerong の小窝](https://www.coolhub.top/) · جيت هب [@YerongAI](https://github.com/YerongAI) · تليجرام [@Office Tool Plus](https://t.me/s/otp_channel) · [مراسلتنا](mailto:yerong@coolhub.top) 54 | -------------------------------------------------------------------------------- /README-de_de.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 11 | License 12 |

13 | 14 | > Ein leistungsstarkes und nützliches Tool für Office-Bereitstellungen. 15 | 16 | Unterstützt die benutzerdefinierte Bereitstellung und Aktivierung der folgenden Produkte: 17 | 18 | - Microsoft 365 19 | - Office 2016, 2019, 2021, 2024 20 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2 21 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client 22 | 23 | Funktionen und Features: 24 | 25 | - Erstellen Sie eine Office-Installationskonfiguration. Die Konfiguration kann lokal exportiert bzw. lokal oder aus dem Netzwerk importiert werden. 26 | - Laden Sie Office herunter, wobei `ALLE` Office-Kanäle und `ALLE` Office-Sprachen unterstützt werden. 27 | - Installieren Sie Office oder ändern Sie ein bestehendes Office, indem Sie z. B. neue Produkte und Anwendungen hinzufügen oder Produkte und Anwendungen deinstallieren. 28 | - Erstellen Sie Office-ISOs, wobei die Standard- und die stille Installationskonfiguration unterstützt werden. 29 | - Aktivieren Sie Office. Das Tool unterstützt Online-Aktivierung, Telefon-Aktivierung und KMS-Aktivierung. 30 | - Unterstützung der Office-Aktivierungsverwaltung, einschließlich Lizenzverwaltung, Schlüsselverwaltung und KMS-Verwaltung. 31 | - Ändern des Office-Aktualisierungskanals mit Unterstützung des Up-/Downgrades von Office ohne Neuinstallation. 32 | - Entfernen Sie Office. Erzwingen Sie das Entfernen von Office, wenn es nicht auf normalem Weg deinstalliert werden kann. Unterstützt Office ab Version 2003 bis zur neuesten Office-Version. 33 | - Integrierte Office-Tools, einschließlich Zurücksetzen von Einstellungen und Beheben von Office-Problemen. 34 | - Konvertieren Sie Office-Dokumente, basierend auf Office-COM. Es ist schnell und stabil. 35 | - Personalisieren Sie das Design, Sie können Ihr eigenes Office Tool Plus gestalten. 36 | - Mit den erweiterten Einstellungen können Sie erweiterte Funktionen, wie z. B. Office-interne Kanäle, nutzen. 37 | 38 | ## Download und Schnellstart 39 | 40 | - [Download](https://otp.landian.vip/download.html) 41 | - [Dokumentation](https://otp.landian.vip/help/) 42 | 43 | Or download Office Tool Plus using PowerShell: 44 | 45 | ```powershell 46 | irm officetool.plus | iex 47 | ``` 48 | 49 | ## Über Office Tool Plus 50 | 51 | © 2016-2025 Yerong. Alle Rechte vorbehalten. 52 | 53 | > Blog: [@Yerong の小窝](https://www.coolhub.top/) · GitHub: [@YerongAI](https://github.com/YerongAI) · Telegram: [@Office Tool Plus](https://t.me/s/otp_channel) 54 | 55 | 56 | -------------------------------------------------------------------------------- /README-en_gb.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 12 | License 13 |

14 | 15 | > A powerful and useful tool for Office deployments. 16 | 17 | Supports custom deployment and activation of the following products: 18 | 19 | - Microsoft 365. 20 | - Office 2016, 2019, 2021, 2024. 21 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2. 22 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client. 23 | 24 | Functions and Features: 25 | 26 | - Create Office installation configuration. The config can be exported to local, or imported from local or web. 27 | - Download Office, supporting `ALL` Office channels and `ALL` Office languages. 28 | - Install Office or modify the existing Office, such as adding new products and applications, or uninstalling products and applications. 29 | - Create Office ISO, supports default installation config and silent installation config. 30 | - Activate Office. Support online activation, phone activation and KMS activation. 31 | - Support Office activation management, including licence management, key management and KMS management. 32 | - Change Office update channel, support upgrading/downgrading Office without reinstalling Office. 33 | - Remove Office. Force remove Office while it can’t be uninstalled in normal way, support Office from Office 2003 to the latest Office version. 34 | - Integrated Office tools, including resetting settings, fixing Office problems. 35 | - Convert Office documents, based on Office COM. it's fast and stable. 36 | - Personalise theme, you can build your special Office Tool Plus. 37 | - Advanced settings allow you to use more advanced features, such as Office internal channels. 38 | 39 | ## Download and quick start 40 | 41 | - [Download](https://otp.landian.vip/download.html) 42 | - [Documentation](https://otp.landian.vip/help/) 43 | 44 | Or download Office Tool Plus using PowerShell: 45 | 46 | ```powershell 47 | irm officetool.plus | iex 48 | ``` 49 | 50 | ## About 51 | 52 | © 2016-2025 Yerong. All Rights Reserved. 53 | 54 | > Blog [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 55 | -------------------------------------------------------------------------------- /README-es_es.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 11 | License 12 |

13 | 14 | > Una herramienta poderosa y útil para implementaciones de Office. 15 | 16 | Admite la implementación y activación personalizadas de los siguientes productos: 17 | 18 | - Microsoft 365 19 | - Office 2016, 2019, 2021, 2024 20 | - Visio 2016, 2019, 2021, 2024 y plan en línea 2 21 | - Project 2016, 2019, 2021, 2024 y cliente de escritorio en línea 22 | 23 | Funciones adicionales: 24 | 25 | - Crear la configuración de la instalación de Office. La configuración puede ser exportada a local, o importada desde local o web. 26 | - Descargar Office, con soporte para TODOS los canales de Office y TODOS los idiomas de Office. 27 | - Instalar Office o modificar el existente, como añadir nuevos productos y aplicaciones, o desinstalar productos y aplicaciones. 28 | - Crear ISO de Office, soporta la configuración de instalación por defecto y la configuración de instalación silenciosa. 29 | - Activar Office. Soporta activación en línea, activación telefónica y activación KMS. 30 | - Soporta la gestión de la activación de Office, incluyendo la gestión de licencias, la gestión de claves y la gestión de KMS. 31 | - Cambia el canal de actualización de Office, soporta la actualización/desactualización de Office sin reinstalar Office. 32 | - Eliminar Office. Forzar la eliminación de Office mientras no se pueda desinstalar de forma normal, soportar Office desde Office 2003 hasta la última versión de Office. 33 | - Herramientas integradas de Office, incluyendo el restablecimiento de la configuración, la fijación de los problemas de Office. 34 | - Convertir documentos de Office, basado en Office COM. es rápido y estable. 35 | - Personalizar el tema, usted puede construir su herramienta especial de Office Plus. 36 | - La configuración avanzada le permite utilizar características más avanzadas, como los canales internos de Office. 37 | 38 | ## Descarga e inicio rápido 39 | 40 | - [Download](https://otp.landian.vip/download.html) 41 | - [Documentation](https://otp.landian.vip/help/) 42 | 43 | Or download Office Tool Plus using PowerShell: 44 | 45 | ```powershell 46 | irm officetool.plus | iex 47 | ``` 48 | 49 | ## A propósito 50 | 51 | © 2016-2025 Yerong. Todos los derechos reservados. 52 | 53 | > Blog [@Yerong の 小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 54 | -------------------------------------------------------------------------------- /README-fr_fr.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 11 | License 12 |

13 | 14 | > Un outil puissant et utile pour les déploiements d'Office. 15 | 16 | Prend en charge le déploiement personnalisé et l'activation des produits suivants : 17 | 18 | - Microsoft 365. 19 | - Office 2016, 2019, 2021, 2024. 20 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2. 21 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client. 22 | 23 | Fonctionnalités et caractéristiques : 24 | 25 | - Création d'une configuration d'installation d'Office. La configuration peut être exportée en local, ou importée depuis le local ou le web. 26 | - Téléchargement d'Office, supportant `TOUS` les canaux et `TOUTES` les langues d'Office. 27 | - Installation d'Office ou modification d'Office existant, comme l'ajout de nouveaux produits et applications, ou la désinstallation de produits et d'applications. 28 | - Création de l'ISO d'Office, avec prise en charge de la configuration d'installation par défaut et de la configuration d'installation silencieuse. 29 | - Activer Office. Prise en charge de l'activation en ligne, de l'activation par téléphone et de l'activation KMS. 30 | - Prise en charge de la gestion de l'activation d'Office, y compris la gestion des licences, la gestion des clés et la gestion KMS. 31 | - Changement du canal de mise à jour d'Office, prise en charge de la mise à niveau/dégradation d'Office sans réinstallation d'Office. 32 | - Suppression d'Office. Forcez la suppression d'Office lorsqu'il ne peut pas être désinstallé de manière normale, prenez en charge Office depuis Office 2003 jusqu'à la dernière version d'Office. 33 | - Outils Office intégrés, y compris la réinitialisation des paramètres, la résolution des problèmes Office. 34 | - Conversion des documents Office, basée sur Office COM, rapide et stable. 35 | - Personnalisation du thème, vous pouvez créer votre propre outil Office Plus. 36 | - Les paramètres avancés vous permettent d'utiliser des fonctions plus avancées, telles que les canaux internes d'Office. 37 | 38 | ## Téléchargement et démarrage rapide 39 | 40 | - [Téléchargement](https://otp.landian.vip/download.html) 41 | - [Documentation](https://otp.landian.vip/help/) 42 | 43 | Or download Office Tool Plus using PowerShell: 44 | 45 | ```powershell 46 | irm officetool.plus | iex 47 | ``` 48 | 49 | ## À propos 50 | 51 | © 2016-2025 Yerong. Tous droits réservés. 52 | 53 | > Blog [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 54 | -------------------------------------------------------------------------------- /README-hu_hu.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 12 | License 13 |

14 | 15 | > Hatékony és hasznos eszköz az Office-telepítésekhez. 16 | 17 | Támogatja a következő termékek egyéni telepítését és aktiválását: 18 | 19 | - Microsoft 365. 20 | - Office 2016, 2019, 2021, 2024. 21 | - Visio 2016, 2019, 2021, 2024 & online csomag 2. 22 | - Project 2016, 2019, 2021, 2024 & Online asztali kliens. 23 | 24 | Funkciók és jellemzők: 25 | 26 | - Office telepítési konfiguráció létrehozása. A konfiguráció exportálható helyi, illetve importálható helyi vagy webes hálózatról. 27 | - Office letöltése, amely támogatja az 'Mind' Office-csatornát és az 'Mind' Office-nyelvet. 28 | - Az Office telepítése vagy a meglévő Office módosítása, például új termékek és alkalmazások hozzáadása vagy termékek és alkalmazások eltávolítása. 29 | - Office ISO létrehozása, támogatja az alapértelmezett telepítési konfigurációt és a csendes telepítési konfigurációt. 30 | - Aktiválja az Office-t. Támogatja az online aktiválást, a telefonos aktiválást és a KMS aktiválást. 31 | - Az Office aktiválás kezelésének támogatása, beleértve a licenckezelést, a kulcsok kezelését és a KMS-kezelést. 32 | - Az Office frissítési csatornájának megváltoztatása, az Office frissítésének/alacsonyabb verziószámra való visszaváltásának támogatása az Office újratelepítése nélkül. 33 | - Távolítsa el az Office-t. Az Office kényszerített eltávolítása, miközben nem lehet normál módon eltávolítani, az Office 2003-tól a legújabb Office-verzióig támogatja az Office-t. 34 | - Integrált Office-eszközök, beleértve a beállítások visszaállítását, Office-problémák javítását. 35 | - Office dokumentumok konvertálása, az Office COM alapján. Ez gyors és stabil. 36 | - Személyre szabhatja a témát, létrehozhatja a különleges Office Tool Plus-t. 37 | - A speciális beállítások lehetővé teszik a fejlettebb funkciók, például az Office belső csatornák használatát. 38 | 39 | ## Letöltés és gyors indítás 40 | 41 | - [Download](https://otp.landian.vip/download.html) 42 | - [Documentation](https://otp.landian.vip/help/) 43 | 44 | Vagy töltse le az Office Tool Plus-t a PowerShell segítségével: 45 | 46 | ```powershell 47 | irm officetool.plus | iex 48 | ``` 49 | 50 | ## Névjegy 51 | 52 | © 2016-2025 Yerong. Minden jog fenntartva. 53 | 54 | > Blog [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 55 | -------------------------------------------------------------------------------- /README-id_id.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 11 | License 12 |

13 | 14 | > Merupakan alat yang berguna dan bertenaga dalam memasangkan Office. 15 | 16 | Mendukung untuk memasangan ubahsuai dan mengaktivasi produk berikut: 17 | 18 | - Microsoft 365 19 | - Office 2016, 2019, 2021, 2024 20 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2 21 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client 22 | 23 | Fungsi Tambahan: 24 | 25 | - Mendukung semua 17 saluran Office, termasuk kueri, unduhan dan pemasangan. 26 | - Modifikasi Office yang sudah ada, termasuk menambahkan atau mencopot produk, aplikasi, paket bahasa, dll. 27 | - Mengekspor/Mengimpor profil XML. 28 | - Membuat berkas ISO untuk berbagi untuh pemasangan secara luring. 29 | - Pemasangan lisensi Office (edisi terkonversi) 30 | - Pembersihan lisensi dan kunci produk Office. 31 | - Mendukung aktivasi secara daring, aktivasi telepon (aktivasi secara luring) dan aktivasi KMS. 32 | - Setel ulang/paksa mencopot Office. 33 | - Mengubah saluran pembaruan Office tanpa perlu memasang kembali Office. 34 | - Sejumlah konversi dokumen Office, berdasarkan Office API 35 | 36 | ## Download and quick start 37 | 38 | - [Download](https://otp.landian.vip/download.html) 39 | - [Documentation](https://otp.landian.vip/help/) 40 | 41 | Or download Office Tool Plus using PowerShell: 42 | 43 | ```powershell 44 | irm officetool.plus | iex 45 | ``` 46 | 47 | ## Tentang 48 | 49 | © 2016-2025 Yerong. Semua Hak Cipta Dilindungi. 50 | 51 | > Blog [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 52 | -------------------------------------------------------------------------------- /README-it_it.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 12 | License 13 |

14 | 15 | > Uno strumento potente e utile per le distribuzioni di Office. 16 | 17 | Supporta la distribuzione personalizzata e l'attivazione dei seguenti prodotti: 18 | 19 | - Microsoft 365 20 | - Office 2016, 2019, 2021, 2024 21 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2 22 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client 23 | 24 | Funzioni e caratteristiche:: 25 | 26 | - Crea la configurazione di installazione di Office. La configurazione può essere esportata in locale o importata da locale o web. 27 | - Scarica Office, supporta 'TUTTI' i canali di Office e 'TUTTE' le lingue di Office. 28 | - Installa Office o modifica Office esistente, ad esempio aggiungendo nuovi prodotti e applicazioni o rimuovendo prodotti ed applicazioni. 29 | - Crea le immagini ISO di Office, supporta la configurazione di installazione predefinita e la configurazione di installazione silenziosa. 30 | - Attiva Office. Supporta l'attivazione online, l'attivazione telefonica e l'attivazione KMS. 31 | - Supporta la gestione dell'attivazione di Office, inclusa la gestione delle licenze, la gestione delle chiavi e la gestione di KMS. 32 | - Modifica il canale di aggiornamento di Office, supporta l'aggiornamento/downgrade di Office senza reinstallare Office. 33 | - Rimuovi Office. Forza la rimozione di Office mentre non può essere disinstallato normalmente, supporta da Office 2003 alla versione più recente di Office. 34 | - Strumenti di Office integrati, incluso il ripristino delle impostazioni e la risoluzione dei problemi di Office. 35 | - Conversione documenti Office, basati su Office COM. è veloce e stabile. 36 | - Personalizza il tema, puoi creare il tema speciale Office Tool Plus. 37 | - Le impostazioni avanzate consentono di usare funzionalità più avanzate, come i canali interni di Office. 38 | 39 | ## Download ed avvio rapido 40 | 41 | - [Download](https://otp.landian.vip/download.html) 42 | - [Documentazione](https://otp.landian.vip/help/) 43 | 44 | Oppure scarica Office Tool Plus usando PowerShell: 45 | 46 | ```powershell 47 | irm officetool.plus | iex 48 | ``` 49 | 50 | ## Info programma 51 | 52 | © 2016-2025 Yerong. Tutti i diritti riservati. 53 | 54 | > Blog [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 55 | -------------------------------------------------------------------------------- /README-ko_kr.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 11 | License 12 |

13 | 14 | > Office 배포를 위한 강력하고 유용한 도구입니다. 15 | 16 | 다음 제품의 사용자 정의 배포 및 활성화를 지원합니다: 17 | 18 | - Microsoft 365 19 | - Office 2016, 2019, 2021, 2024 20 | - Visio 2016, 2019, 2021, 2024 및 온라인 플랜 2 21 | - Project 2016, 2019, 2021, 2024 및 온라인 데스크톱 클라이언트 22 | 23 | 기능 및 특징: 24 | 25 | - Office 설치 구성을 만듭니다. 구성을 로컬로 내보내거나 로컬 또는 웹에서 가져올 수 있습니다. 26 | - Office를 다운로드하여 `모든` Office 채널과 `모든` Office 언어를 지원합니다. 27 | - 새 제품 및 응용 프로그램 추가 또는 제품 및 응용 프로그램 제거와 같이 Office를 설치하거나 기존 Office를 수정합니다. 28 | - Office ISO 만들기, 기본 설치 구성 및 자동 설치 구성을 지원합니다. 29 | - Office를 활성화합니다. 온라인 활성화, 전화 활성화 및 KMS 활성화를 지원합니다. 30 | - 라이선스 관리, 키 관리 및 KMS 관리를 포함한 Office 활성화 관리를 지원합니다. 31 | - Office 업데이트 채널을 변경하고 Office를 다시 설치하지 않고 Office 업그레이드/다운그레이드를 지원합니다. 32 | - Office를 제거합니다. 정상적인 방법으로 제거할 수 없는 경우 Office를 강제 제거하고 Office 2003부터 최신 Office 버전까지 Office를 지원합니다. 33 | - 설정 초기화, Office 문제 해결을 포함한 통합 Office 도구입니다. 34 | - Office COM을 기반으로 Office 문서를 변환합니다. 빠르고 안정적입니다. 35 | - 테마를 개인화하면 특별한 Office Tool Plus를 구축할 수 있습니다. 36 | - 고급 설정을 사용하면 Office 내부 채널과 같은 고급 기능을 사용할 수 있습니다. 37 | 38 | ## 다운로드 및 빠른 시작 39 | 40 | - [다운로드](https://otp.landian.vip/download.html) 41 | - [문서](https://otp.landian.vip/help/) 42 | 43 | 또는 PowerShell을 사용하여 Office Tool Plus를 다운로드하세요: 44 | 45 | ```powershell 46 | irm officetool.plus | iex 47 | ``` 48 | 49 | ## 추가 정보 50 | 51 | © 2016-2025 Yerong. All Rights Reserved. 52 | 53 | > 블로그 [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 54 | -------------------------------------------------------------------------------- /README-nl_nl.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 11 | License 12 |

13 | 14 | > Een krachtige en handige tool voor Office-implementaties. 15 | 16 | Ondersteunt aangepaste implementatie en activering van de volgende producten:: 17 | 18 | - Microsoft 365 19 | - Office 2016, 2019, 2021, 2024 20 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2 21 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client 22 | 23 | Functies en kenmerken: 24 | 25 | - Maak een Office-installatieconfiguratie. De configuratie kan worden geëxporteerd naar lokaal of geïmporteerd vanuit lokaal of web. 26 | - Download Office, ondersteunt `ALLE` Office-kanalen en `ALLE` Office-talen 27 | - Installeer Office of wijzig het bestaande Office, zoals het toevoegen van nieuwe producten en toepassingen of het verwijderen van producten en toepassingen. 28 | - Maak Office ISO, ondersteunt standaardinstallatieconfiguratie en stille installatieconfiguratie. 29 | - Activeer Office. Ondersteuning online activering, telefoonactivering en KMS-activering. 30 | - Ondersteuning Office-activeringsbeheer, inclusief licentiebeheer, sleutelbeheer en KMS-beheer. 31 | - Wijzig het Office-updatekanaal, ondersteun het upgraden/downgraden van Office zonder Office opnieuw te installeren. 32 | - Office verwijderen. Forceer Office verwijderen wanneer het niet op de normale manier kan worden verwijderd, ondersteun Office van Office 2003 tot de nieuwste Office-versie. 33 | - Geïntegreerde Office-tools, waaronder het resetten van instellingen, oplossen van Office-problemen. 34 | - Converteer Office-documenten, gebaseerd op Office COM. het is snel en stabiel. 35 | - Personaliseer het thema, u kunt uw speciale Office Tool Plus bouwen. 36 | - Met geavanceerde instellingen kunt u meer geavanceerde functies gebruiken, zoals interne Office-kanalen. 37 | 38 | ## Downloaden en snelstart 39 | 40 | - [Download](https://otp.landian.vip/download.html) 41 | - [Documentation](https://otp.landian.vip/help/) 42 | 43 | Or download Office Tool Plus using PowerShell: 44 | 45 | ```powershell 46 | irm officetool.plus | iex 47 | ``` 48 | 49 | ## Over 50 | 51 | © 2016-2025 Yerong. All Rights Reserved. 52 | 53 | > Blog [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 54 | -------------------------------------------------------------------------------- /README-pl_pl.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 11 | License 12 |

13 | 14 | > Potężne i przydatne narzędzie do wdrożeń pakietu Office. 15 | 16 | Obsługuje niestandardowe wdrażanie i aktywację następujących produktów: 17 | 18 | - Microsoft 365 19 | - Office 2016, 2019, 2021, 2024 20 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2 21 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client 22 | 23 | Dodatkowe funkcje: 24 | 25 | - Obsługa wszystkich 17 kanałów pakietu Office, w tym zapytań, pobierania i instalacji. 26 | - Modyfikacje istniejącego pakietu Office, w tym dodawanie i usuwanie produktów, aplikacji, pakietów językowych itp. 27 | - Importowanie / eksportowanie profili XML. 28 | - Twórz pliki ISO do udostępniania lub instalacji offline. 29 | - Instalowanie licencji Office (wersja przekonwertowana). 30 | - Czyszczenie licencji i kluczy pakietu Office. 31 | - Obsługuje aktywację online, aktywację telefoniczną (aktywacja offline) i aktywację KMS. 32 | - Reset / wymuszone usunięcie pakietu Office. 33 | - Zmiana kanału aktualizacji pakietu Office bez ponownej instalacji pakietu Office. 34 | - Konwersja wsadowa dokumentów Office w oparciu o Office API. 35 | 36 | ## Pobierz i szybki start 37 | 38 | - [Pobierz](https://otp.landian.vip/download.html) 39 | - [Dokumentacja](https://otp.landian.vip/help/) 40 | 41 | Or download Office Tool Plus using PowerShell: 42 | 43 | ```powershell 44 | irm officetool.plus | iex 45 | ``` 46 | 47 | ## O... 48 | 49 | © 2016-2025 Yerong. Wszelkie prawa zastrzeżone. 50 | 51 | > Blog [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 52 | -------------------------------------------------------------------------------- /README-ro_ro.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 11 | License 12 |

13 | 14 | > Un instrument puternic și util pentru implementările Office. 15 | 16 | Suportă implementarea personalizată și activarea următoarelor produse: 17 | 18 | - Microsoft 365 19 | - Office 2016, 2019, 2021, 2024 20 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2 21 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client 22 | 23 | Funcții și caracteristici: 24 | 25 | - Creați configurația de instalare Office. Configurarea poate fi exportată local sau importată din local sau web. 26 | - Descărcați Office, având suport pentru „TOATE” canalele Office și „TOATE” limbile Office. 27 | - Instalați Office sau modificați Office-ul existent, cum ar fi adăugarea de produse și aplicații noi sau dezinstalarea produselor și aplicațiilor. 28 | - Creați ISO Office, cu suport pentru configurarea de instalare implicită și configurația de instalare silențioasă. 29 | - Activați Office. Suport pentru activarea online, activarea cu telefonul și activarea KMS. 30 | - Suport pentru gestionarea activării Office, inclusiv gestionarea licențelor, gestionarea cheilor și gestionarea KMS. 31 | - Schimbați canalul de actualizare Office, cu suport pentru actualizarea / retrogradarea Office fără a reinstala Office. 32 | - Eliminați Office. Forțați eliminarea Office atunci când acesta nu poate fi dezinstalat în mod normal, cu suport de la Office 2003 la cea mai recentă versiune Office. 33 | - Instrumente Office integrate, inclusiv resetarea setărilor, remedierea problemelor Office. 34 | - Conversia documentelor Office, pe baza Office COM. Este rapid și stabil. 35 | - Personalizați tema, puteți construi Office Tool Plus special. 36 | - Setările avansate vă permit să utilizați funcții mai avansate, cum ar fi canalele interne Office. 37 | 38 | ## Descărcare și pornire rapidă 39 | 40 | - [Descarcă](https://otp.landian.vip/download.html) 41 | - [Documentation](https://otp.landian.vip/help/) 42 | 43 | Or download Office Tool Plus using PowerShell: 44 | 45 | ```powershell 46 | irm officetool.plus | iex 47 | ``` 48 | 49 | ## Despre 50 | 51 | © 2016-2025 Yerong. Toate drepturile rezervate. 52 | 53 | > Blog [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 54 | -------------------------------------------------------------------------------- /README-ru_ru.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 11 | License 12 |

13 | 14 | > Мощный и полезный инструмент для развертывания Офиса. 15 | 16 | Поддерживает индивидуальное развертывание и активацию следующих продуктов: 17 | 18 | - Microsoft 365 19 | - Office 2016, 2019, 2021, 2024 20 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2 21 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client 22 | 23 | Дополнительные возможности: 24 | 25 | - Поддержка всех 17 каналов Office, включая загрузку, установку и выполнение запросов; 26 | - Изменение существующего Office, включая добавление и удаление продуктов, приложений, языковых пакетов и т. д; 27 | - Импорт/экспорт XML-профилей; 28 | - Создание ISO-образов для совместного использования или для автономной установки; 29 | - Установка лицензий Office (преобразование редакций); 30 | - Очистка лицензий и ключей Office; 31 | - Поддерживает онлайн-активацию, активацию по телефону (офлайн-активация) и KMS-активацию Office 32 | - Сброс/принудительное удаление Office; 33 | - Изменение канала обновления Office без переустановки; 34 | - Пакетное преобразование документов Office на основе API. 35 | 36 | ## Скачивание и быстрый старт 37 | 38 | - [Скачать](https://otp.landian.vip/download.html) 39 | - [Документация](https://otp.landian.vip/help/) 40 | 41 | Или скачайте Office Tool Plus с использованием PowerShell: 42 | 43 | ```powershell 44 | irm officetool.plus | iex 45 | ``` 46 | 47 | ## О разработке 48 | 49 | © 2016-2025 Yerong. All Rights Reserved. 50 | 51 | > Blog [@Yerong の小窝](https://www.coolhub.top/) В· GitHub [@YerongAI](https://github.com/YerongAI) В· Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 52 | -------------------------------------------------------------------------------- /README-th_th.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 11 | License 12 |

13 | 14 | > นี่คือ เครื่องมือที่ทรงพลังและมีประโยชน์สำหรับการปรับใช้ Office 15 | 16 | รองรับการปรับใช้แบบกำหนดเองและการเปิดใช้งานผลิตภัณฑ์ต่อไปนี้: 17 | 18 | - Microsoft 365 19 | - Office 2016, 2019, 2021, 2024 20 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2 21 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client 22 | 23 | ฟังก์ชั่นและคุณสมบัติ: 24 | 25 | - สร้างการกำหนดค่าการติดตั้ง Office การกำหนดค่าสามารถส่งออกไปยังที่เก็บบนพีซีของคุณ และสามารถนำเข้าจากพีซีของคุณและเว็บ 26 | - ดาวน์โหลด Office ที่รองรับ `ทั้งหมด` ผ่านทางช่องทาง Office `ทั้งหมด` และ ชุดภาษาของ Office 27 | - ติดตั้ง Office หรือ ปรับแต่ง Office ที่มีอยู่แล้วในเครื่องของคุณ เช่น การเพิ่มผลิตภัณฑ์และแอพพลิเคชั่นใหม่ หรือ ถอนการติดตั้งผลิตภัณฑ์และแอพพลิเคชั่น 28 | - สร้างไฟล์ Office แบบ ISO รองรับการกำหนดค่าการติดตั้งเริ่มต้นและการกำหนดค่าการติดตั้งแบบไม่โต้ตอบ 29 | - เปิดใช้งาน Office รองรับการเปิดใช้งานออนไลน์ การเปิดใช้งานโทรศัพท์ และการเปิดใช้งานผ่าน KMS 30 | - รองรับการจัดการ การเปิดใช้งาน Office รวมถึงการจัดการใบอนุญาต การจัดการรหัสผลิตภัณฑ์ และการจัดการ KMS 31 | - เปลี่ยนช่องทางการปรับปรุง Office รองรับการอัพเกรด/ดาวน์เกรด Office โดยไม่ต้องติดตั้ง Office ใหม่ 32 | - ลบ Office บังคับลบ Office ในขณะที่ไม่สามารถถอนการติดตั้งได้ตามปกติ รองการสนับสนุน Office 2003 จนถึง Office เวอร์ชั่นล่าสุด 33 | - เครื่องมือ Office ในตัว รวมถึงการรีเซ็ตการตั้งค่า ในการแก้ไขปัญหา Office 34 | - แปลงเอกสาร Office ตามค่ามาตรฐาน Office ได้อย่างรวดเร็วและเสถียร 35 | - ปรับแต่งธีม และสามารถสร้าง Office Tool Plus ในแบบของคุณได้ 36 | - การตั้งค่าขั้นสูงช่วยให้คุณใช้ฟีเจอร์ขั้นสูงได้ เช่น ช่องทางภายในของ Office 37 | 38 | ## ดาวน์โหลด และ เริ่มต้นอย่างรวดเร็ว 39 | 40 | - [ดาวน์โหลด](https://otp.landian.vip/download.html) 41 | - [เอกสาร](https://otp.landian.vip/help/) 42 | 43 | หรือดาวน์โหลด Office Tool Plus โดยใช้ PowerShell: 44 | 45 | ```powershell 46 | irm officetool.plus | iex 47 | ``` 48 | 49 | ## เกี่ยวกับเรา 50 | 51 | © 2016-2025 Yerong. สงวนลิขสิทธิ์ 52 | 53 | > บล็อก [@Yerong の小窝](https://www.coolhub.top/) · กิตฮับ [@YerongAI](https://github.com/YerongAI) · เทเลแกรม [@Office Tool Plus](https://t.me/s/otp_channel) 54 | -------------------------------------------------------------------------------- /README-tr_tr.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Yazar 9 | Dil 10 | Sürüm 12 | Lisans 13 |

14 | 15 | > Office dağıtımları için güçlü ve kullanışlı bir araçtır. 16 | 17 | Aşağıdaki ürünlerin özel dağıtımını ve etkinleştirilmesini destekler: 18 | 19 | - Microsoft 365. 20 | - Office 2016, 2019, 2021, 2024. 21 | - Visio 2016, 2019, 2021, 2024 ve Çevrimiçi Plan 2. 22 | - Project 2016, 2019, 2021, 2024 ve Çevrimiçi Masaüstü İstemcisi 23 | 24 | İşlevler ve Özellikleri: 25 | 26 | - Office yükleme yapılandırması oluşturun. Yapılandırma yerele aktarılabilir veya yerelden ya da web'den içe aktarılabilir. 27 | - "TÜM" Office kanallarını ve "TÜM" Office dillerini destekleyen Office'i indirmeyi sağlar. 28 | - Yeni ürünler ve uygulamalar eklemek veya ürün ve uygulamaları kaldırmak gibi Office'i yükler veya mevcut Office'i değiştirme imkanı sağlar. 29 | - Office ISO'su oluşturun, varsayılan kurulum yapılandırmasını ve sessiz kurulum yapılandırmasını destekler. 30 | - Office'i etkinleştirin. Çevrimiçi aktivasyonu, telefon aktivasyonunu ve KMS aktivasyonunu destekler. 31 | - Lisans yönetimi, anahtar yönetimi ve KMS yönetimi dahil olmak üzere Office etkinleştirme yöntemlerini destekler. 32 | - Office güncelleme kanalını değiştirir, Office'i yeniden yüklemeden Office'i yükseltmeyi / alt sürümü yüklemeyi destekler. 33 | - Office'i kaldırır. Normal şekilde kaldırılamayan Office'i zorla kaldırmayı destekler, Office'i Office 2003 sürümünden en son Office sürümüne kadar destekler. 34 | - Ayarların sıfırlanması, Office sorunlarının düzeltilmesi dahil tüm Office araçlarına sahiptir. 35 | - Office belgelerini Office COM'daki gibi hızlı ve kararlı bir şekilde dönüştürür. 36 | - Temalarınızı kişiselleştirebilir, kendinize özel Office Tool Plus'ınızı oluşturabilirsiniz. 37 | - Gelişmiş ayarlar kısmından, Office dahili kanalları kullanarak daha gelişmiş özellikleri kullanmanızı sağlar. 38 | 39 | ## İndirme ve hızlı başlangıç 40 | 41 | - [Download](https://otp.landian.vip/download.html) 42 | - [Documentation](https://otp.landian.vip/help/) 43 | 44 | Or download Office Tool Plus using PowerShell: 45 | 46 | ```powershell 47 | irm officetool.plus | iex 48 | ``` 49 | 50 | ## Hakkında 51 | 52 | © 2016-2025 Yerong.Her hakkı saklıdır. 53 | 54 | > Blog [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 55 | -------------------------------------------------------------------------------- /README-zh_cn.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 11 | License 12 |

13 | 14 | > 一个强大且实用的 Office 部署工具。 15 | 16 | 支持以下产品的自定义部署与激活: 17 | 18 | - Microsoft 365 19 | - Office 2016, 2019, 2021, 2024 20 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2 21 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client 22 | 23 | 功能与特性: 24 | 25 | - 支持 Office 的全部 17 个通道,包括查询、下载、安装 26 | - 对现有的产品、应用程序、语言包进行增删操作 27 | - 从本地/网络位置导入 XML 配置 28 | - 导出 XML 配置到本地 29 | - 创建 Office ISO 文件供离线安装使用 30 | - 安装 Office 许可证(转换 Office 版本) 31 | - 清理 Office 的许可证以及密钥 32 | - 支持在线激活、电话激活(离线激活)以及 KMS 激活 33 | - 强制移除 Office,支持所有版本的 Office 34 | - 重置 Office 为默认设置 35 | - 更改 Office 的更新通道 36 | - 批量转换 Office 文档 37 | - 自定义主题,支持保存程序设置 38 | 39 | ## 下载 & 快速入门 40 | 41 | - [下载](https://otp.landian.vip/download.html) 42 | - [帮助文档](https://otp.landian.vip/help/) 43 | 44 | 或者使用 PowerShell 下载 Office Tool Plus: 45 | 46 | ```powershell 47 | irm officetool.plus | iex 48 | ``` 49 | 50 | 更多详细教程可访问 [Yerong の小窝](https://www.coolhub.top/) 获取。 51 | 52 | ## 关于 53 | 54 | © 2016-2025 Yerong. All Rights Reserved. 55 | 56 | > 博客 [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 57 | -------------------------------------------------------------------------------- /README-zh_tw.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 11 | License 12 |

13 | 14 | > 多功能集於一身的 Office 部署工具 15 | 16 | 支援以下 Office 產品的自訂部署和啟用: 17 | 18 | - Microsoft 365 19 | - Office 2016, 2019, 2021, 2024 20 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2 21 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client 22 | 23 | 除了部署 Office 之外,Office Tool Plus 還擁有以下便利功能: 24 | 25 | - 支援使用 Office 全部 17 個頻道來進行查詢、下載、安裝操作 26 | - 支援對現有已安裝 Office 進行產品、應用程式、語言套件的增刪操作 27 | - 支援匯出/匯入 XML 設定文件 28 | - 支援建立 ISO 安裝文件以供分享貨離線安裝使用 29 | - 支援安裝或轉換 Office 授權 30 | - 支援線上啟用、電話啟用(離線啟用)和 KMS 啟用 31 | - 支援直接修改現有已安裝的 Office 更新頻道,無須重新安裝 Office 32 | - 支援大量轉換 Office 文件,基於 Office API 33 | - 一鍵清除 Office 的授權和金鑰 34 | - 一鍵重設/強制移除 Office 35 | 36 | ## 下載 & 快速入門 37 | 38 | - [下載](https://otp.landian.vip/download.html) 39 | - [快速入門(繁體)](https://otp.landian.vip/help/) 40 | - [教學文章(繁體)](https://www.cotpear.com/topics/office-tool-plus/?utm_source=github.com/office-tool) 41 | 42 | Or download Office Tool Plus using PowerShell: 43 | 44 | ```powershell 45 | irm officetool.plus | iex 46 | ``` 47 | 48 | ## 合法性 49 | 50 | Office Tool Plus 是以 [Microsoft Office 部署工具](https://docs.microsoft.com/zh-tw/DeployOffice/overview-of-the-office-2016-deployment-tool)、[OSPP](https://docs.microsoft.com/zh-tw/DeployOffice/vlactivation/tools-to-manage-volume-activation-of-office)、遵循 Microsoft 開發文件為基礎打造,因此並不存在有關「破解」、「KMS 破解」、「盜版啟用」等違法功能。 51 | 52 | ## 關於繁體中文(台灣) 維護與翻譯者 53 | 54 | 本站為 Office Tool 臺灣管理團隊,歡迎閱讀本站所發布的教學文章、臺灣地區通知。也歡迎您加入 Office Tool Plus 臺灣官方 Telegram 頻道! 55 | 56 | - [Cotpear](https://www.cotpear.com) 57 | - [Office Tool 臺灣管理團隊首頁](https://www.cotpear.com/p/office-tool-taiwan-official-website.html) 58 | - [教學文章](https://www.cotpear.com/search/label/Office) 59 | - [Telegram 頻道](https://t.me/ot_channel_tw) 60 | - [關於《藍點網》授予本網之相關說明條款](https://policies.cotpear.com/terms/) 61 | - [電子郵件聯絡](support@cotpear.com) 62 | 63 | ## 關於 64 | 65 | © 2016-2025 Yerong. All Rights Reserved. 66 | 67 | > Blog [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/ot_channel_tw) 68 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 |

4 | Office Tool Plus Logo 5 |

6 | 7 |

8 | Author 9 | Language 10 | Release 12 | License 13 |

14 | 15 | > A powerful and useful tool for Office deployments. 16 | 17 | Supports custom deployment and activation of the following products: 18 | 19 | - Microsoft 365. 20 | - Office 2016, 2019, 2021, 2024. 21 | - Visio 2016, 2019, 2021, 2024 & Online Plan 2. 22 | - Project 2016, 2019, 2021, 2024 & Online Desktop Client. 23 | 24 | Functions and Features: 25 | 26 | - Create Office installation configuration. The config can be exported to local, or imported from local or web. 27 | - Download Office, supporting `ALL` Office channels and `ALL` Office languages. 28 | - Install Office or modify the existing Office, such as adding new products and applications, or uninstalling products and applications. 29 | - Create Office ISO, supports default installation config and silent installation config. 30 | - Activate Office. Support online activation, phone activation and KMS activation. 31 | - Support Office activation management, including license management, key management and KMS management. 32 | - Change Office update channel, support upgrading/downgrading Office without reinstalling Office. 33 | - Remove Office. Force remove Office while it can’t be uninstalled in normal way, support Office from Office 2003 to the latest Office version. 34 | - Integrated Office tools, including resetting settings, fixing Office problems. 35 | - Convert Office documents, based on Office COM. it's fast and stable. 36 | - Personalize theme, you can build your special Office Tool Plus. 37 | - Advanced settings allow you to use more advanced features, such as Office internal channels. 38 | 39 | ## Download and quick start 40 | 41 | - [Download](https://otp.landian.vip/download.html) 42 | - [Documentation](https://otp.landian.vip/help/) 43 | 44 | Or download Office Tool Plus using PowerShell: 45 | 46 | ```powershell 47 | irm officetool.plus | iex 48 | ``` 49 | 50 | ## Thanks to the Translators 51 | 52 | | Culture | Name | Translators | 53 | | :-- | :-- | :-- | 54 | | de-de | Deutsch (Deutschland) | [Berny23](https://steamcommunity.com/id/Berny23) | 55 | | en-gb | English (United Kingdom) | [Mcforwin](https://github.com/Mcforwin) | 56 | | en-us | English (United States) | [Yerong](https://officetool.plus/) | 57 | | hu-hu | magyar (Magyarország) | [John Fowler](https://github.com/JohnFowler58) | 58 | | id-id | Bahasa Indonesia (Indonesia) | [Ida Bagus Anom Sanjaya](https://fb.me/Anom.Sanjaya17), [Reno Sifana Paksi](https://linktr.ee/renosifana.paksi) | 59 | | it-it | Italiano (Italia) | [garf02](https://github.com/garf02), [bovirus](https://github.com/bovirus) | 60 | | ja-jp | 日本語 (日本) | [秋山へいわ](https://github.com/akio1321)| 61 | | ko-kr | 한국어 (대한민국) | [VenusGirl❤](https://github.com/VenusGirl) | 62 | | nl-nl | Nederlands (Nederland) | [Kajoe](https://github.com/Kajoe1) | 63 | | pl-pl | Polski (Polska) | [JakubDriver](https://github.com/jakubdriver) | 64 | | pt-br | Português (Brasil) | [Igor Rückert](https://github.com/igorruckert) | 65 | | ru-ru | Русский (Россия) | [Долматов Алексей](https://github.com/iDolmatov) | 66 | | th-th | ไทย (ไทย) | [dekthaiinchina](https://github.com/dekthaiinchina) | 67 | | tr-tr | Türkçe (Türkiye) | [Tayfun Akkoyun](https://github.com/crasadure) | 68 | | uk-ua | українська (Україна) | [Olexii Korshunov](https://github.com/korshunov-olexiy) | 69 | | vi-vn | Tiếng Việt (Việt Nam) | [Nguyen Quang Trung](https://github.com/TrungThachDau) | 70 | | zh-tw | 繁體中文 (台灣) | [Yi Chi](https://www.cotpear.com) | 71 | 72 | ## Help With Localization 73 | 74 | We encourage everyone to help with localization. The following is how to do it. 75 | 76 | 1. Fork this repository. 77 | 78 | 2. Translate **en-us.xaml** to your own language then save it like **de-de.xaml**. 79 | 80 | 3. Copy it to the right path. 81 | 82 | 4. Make a Pull Request. 83 | 84 | There is the files you can translate with: 85 | 86 | ``` batch 87 | src\OfficeToolPlus\Dictionaries\Languages 88 | src\OfficeToolPlus\Dictionaries\ProductsName 89 | config\Launcher 90 | config\Message 91 | ``` 92 | 93 | ## About 94 | 95 | © 2016-2025 Yerong. All Rights Reserved. 96 | 97 | > Blog [@Yerong の小窝](https://www.coolhub.top/) · GitHub [@YerongAI](https://github.com/YerongAI) · Telegram [@Office Tool Plus](https://t.me/s/otp_channel) 98 | -------------------------------------------------------------------------------- /config/Message/end_of_support.json: -------------------------------------------------------------------------------- 1 | { 2 | "en-us": { 3 | "Content": "Microsoft 365 Apps may not install or run correctly on older systems, please [visit our docs](https://otp.landian.vip/help/?ref=out-of-ms-support) for more information." 4 | }, 5 | "ar-sa": { 6 | "Content": "قد لا يتم تثبيت تطبيقات Microsoft 365 أو تشغيلها بشكل صحيح على الأنظمة القديمة، يرجى [زيارة مستنداتنا](https://otp.landian.vip/help/?ref=out-of-ms-support) لمزيد من المعلومات." 7 | }, 8 | "bg-bg": { 9 | "Content": "Microsoft 365 приложенията може да не се инсталират или да не работят правилно на по-стари системи, моля, [посетете нашата документация](https://otp.landian.vip/help/?ref=out-of-ms-support) за повече информация." 10 | }, 11 | "cs-cz": { 12 | "Content": "Aplikace Microsoft 365 se nemusí správně instalovat nebo spouštět na starších systémech, prosím [navštivte naši dokumentaci](https://otp.landian.vip/help/?ref=out-of-ms-support) pro více informací." 13 | }, 14 | "da-dk": { 15 | "Content": "Microsoft 365-apps kan muligvis ikke installeres eller køre korrekt på ældre systemer, [besøg vores dokumentation](https://otp.landian.vip/help/?ref=out-of-ms-support) for flere oplysninger." 16 | }, 17 | "de-de": { 18 | "Content": "Microsoft 365-Apps können möglicherweise nicht installiert oder auf älteren Systemen nicht korrekt ausgeführt werden. Bitte [besuchen Sie unsere Dokumentation](https://otp.landian.vip/help/?ref=out-of-ms-support) für weitere Informationen." 19 | }, 20 | "el-gr": { 21 | "Content": "Οι εφαρμογές Microsoft 365 ενδέχεται να μην εγκαθίστανται ή να εκτελούνται σωστά σε παλαιότερα συστήματα, παρακαλώ [επισκεφθείτε την τεκμηρίωσή μας](https://otp.landian.vip/help/?ref=out-of-ms-support) για περισσότερες πληροφορίες." 22 | }, 23 | "en-gb": { 24 | "Content": "Microsoft 365 Apps may not install or run correctly on older systems, please [visit our docs](https://otp.landian.vip/help/?ref=out-of-ms-support) for more information." 25 | }, 26 | "es-es": { 27 | "Content": "Es posible que las aplicaciones de Microsoft 365 no se instalen o no se ejecuten correctamente en sistemas más antiguos; [visite nuestros documentos](https://otp.landian.vip/help/?ref=out-of-ms-support) para obtener más información." 28 | }, 29 | "fi-fi": { 30 | "Content": "Microsoft 365 -sovellukset eivät ehkä asennu tai toimi oikein vanhemmissa järjestelmissä, [katso asiakirjamme](https://otp.landian.vip/help/?ref=out-of-ms-support) lisätietoja varten." 31 | }, 32 | "fr-fr": { 33 | "Content": "Les applications Microsoft 365 peuvent ne pas s’installer ou s’exécuter correctement sur des systèmes plus anciens, veuillez [visitez notre documentation](https://otp.landian.vip/help/?ref=out-of-ms-support) pour plus d’informations." 34 | }, 35 | "he-il": { 36 | "Content": "אפליקציות Microsoft 365 עשויות שלא להתקין או לפעול כראוי במערכות ישנות יותר, [בקרו במסמכים שלנו](https://otp.landian.vip/help/?ref=out-of-ms-support) למידע נוסף." 37 | }, 38 | "hu-hu": { 39 | "Content": "Előfordulhat, hogy a Microsoft 365 alkalmazások nem települnek vagy nem futnak megfelelően a régebbi rendszereken, további információkért kérjük, [látogasson el a dokumentumainkba](https://otp.landian.vip/help/?ref=out-of-ms-support)." 40 | }, 41 | "id-id": { 42 | "Content": "Mungkin aplikasi Microsoft 365 tidak terpasang dengan benar di sistem lawas, silakan [kunjungi dokumen ini](https://otp.landian.vip/help/?ref=out-of-ms-support) untuk informasi lebih lanjut." 43 | }, 44 | "it-it": { 45 | "Content": "Le app Microsoft 365 potrebbero non essere installate o eseguite correttamente su sistemi meno recenti, [visita la nostra documentazione](https://otp.landian.vip/help/?ref=out-of-ms-support) per altre informazioni." 46 | }, 47 | "ja-jp": { 48 | "Content": "Microsoft 365 アプリは古いシステムに正しくインストールまたは実行されない場合があります。詳細については、[ドキュメント](https://otp.landian.vip/help/?ref=out-of-ms-support)をご覧ください。" 49 | }, 50 | "ko-kr": { 51 | "Content": "Microsoft 365 앱이 이전 시스템에서 올바르게 설치되거나 실행되지 않을 수 있습니다. 자세한 내용은 [문서](https://otp.landian.vip/help/?ref=out-of-ms-support)를 참조하십시오." 52 | }, 53 | "nb-no": { 54 | "Content": "Microsoft 365-apper kan hende ikke installeres eller kjøre riktig på eldre systemer, vennligst [besøk dokumentasjonen vår](https://otp.landian.vip/help/?ref=out-of-ms-support) for mer informasjon." 55 | }, 56 | "nl-nl": { 57 | "Content": "Microsoft 365-apps worden mogelijk niet geïnstalleerd of werken niet correct op oudere systemen. [Bezoek onze documenten](https://otp.landian.vip/help/?ref=out-of-ms-support) voor meer informatie." 58 | }, 59 | "pl-pl": { 60 | "Content": "Aplikacje Microsoft 365 mogą nie instalować się lub działać poprawnie w starszych systemach [visit our docs](https://otp.landian.vip/help/?ref=out-of-ms-support) po więcej informacji." 61 | }, 62 | "pt-br": { 63 | "Content": "Os aplicativos do Microsoft 365 podem não ser instalados ou executados corretamente em sistemas mais antigos, [visite nossa documentação](https://otp.landian.vip/help/?ref=out-of-ms-support) para mais informações." 64 | }, 65 | "pt-pt": { 66 | "Content": "As aplicações do Microsoft 365 podem não ser instaladas ou funcionar corretamente em sistemas mais antigos, [visite a nossa documentação](https://otp.landian.vip/help/?ref=out-of-ms-support) para mais informações." 67 | }, 68 | "ro-ro": { 69 | "Content": "Aplicațiile Microsoft 365 s-ar putea să nu se instaleze sau să nu funcționeze corect pe sistemele mai vechi, vă rugăm să [vizitați documentația noastră](https://otp.landian.vip/help/?ref=out-of-ms-support) pentru mai multe informații." 70 | }, 71 | "ru-ru": { 72 | "Content": "Приложения Microsoft 365 могут не устанавливаться или работать должным образом на старых системах, пожалуйста, [посетите нашу документацию](https://otp.landian.vip/help/?ref=out-of-ms-support) для получения дополнительной информации." 73 | }, 74 | "sv-se": { 75 | "Content": "Microsoft 365-appar kanske inte installeras eller körs korrekt på äldre system, vänligen [besök vår dokumentation](https://otp.landian.vip/help/?ref=out-of-ms-support) för mer information." 76 | }, 77 | "th-th": { 78 | "Content": "แอป Microsoft 365 อาจไม่สามารถติดตั้งหรือทำงานได้อย่างถูกต้องในระบบเก่า โปรด [ดูเอกสารของเรา](https://otp.landian.vip/help/?ref=out-of-ms-support) สำหรับข้อมูลเพิ่มเติม" 79 | }, 80 | "tr-tr": { 81 | "Content": "Microsoft 365 uygulamaları eski sistemlerde doğru şekilde yüklenmeyebilir veya çalışmayabilir, daha fazla bilgi için lütfen [sitemizdeki dökümanları okuyun](https://otp.landian.vip/help/?ref=out-of-ms-support)." 82 | }, 83 | "uk-ua": { 84 | "Content": "Microsoft 365 Apps може не встановлюватися або не працювати належним чином на старих системах, будь ласка, [відвідайте нашу документацію](https://otp.landian.vip/help/?ref=out-of-ms-support) для отримання додаткової інформації." 85 | }, 86 | "vi-vn": { 87 | "Content": "Các ứng dụng Microsoft 365 có thể không cài đặt hoặc chạy ổn định trên hệ thống cũ, hãy [xem tài liệu](https://otp.landian.vip/help/?ref=out-of-ms-support) để biết thêm chi tiết." 88 | }, 89 | "zh-cn": { 90 | "Content": "Microsoft 365 应用可能无法在老旧的系统上安装或运行,请[查看此处](https://otp.landian.vip/help/?ref=out-of-ms-support)了解更多信息。" 91 | }, 92 | "zh-tw": { 93 | "Content": "Microsoft 365 應用可能無法在老舊的系統上安裝或運行,請[查看此處](https://otp.landian.vip/help/?ref=out-of-ms-support)了解更多信息。" 94 | } 95 | } -------------------------------------------------------------------------------- /doc/Tech Articles/Channels.md: -------------------------------------------------------------------------------- 1 | # Office Update Channels Information 2 | 3 | For more information of update channels for Microsoft 365 Apps, please visit [Update channels for Microsoft 365 Apps](https://docs.microsoft.com/en-us/deployoffice/overview-update-channels). 4 | 5 | For more information of update channel for Office 2019, please visit [Update channel for Office 2019](https://docs.microsoft.com/en-us/deployoffice/office2019/update#update-channel-for-office-2019). 6 | 7 | For more information about Click-To-Run API, please [visit the website](https://mrodevicemgr.officeapps.live.com/mrodevicemgrsvc/api/v2/C2RReleaseData). 8 | 9 | If a channel hasn't been updated in over a year, I'll mark it as deprecated. 10 | 11 | ## Update Channels List 12 | 13 | | Branch | FFN | Channel Name | Channel ID | Deprecated | 14 | | :--- | :--- | :--- | :--- | :---: | 15 | | Production::LTSC | f2e724c1-748f-4b47-8fb8-8e0d210e9208 | Office 2019 Perpetual Enterprise Channel | PerpetualVL2019 | | 16 | | Production::LTSC2021 | 5030841d-c919-4594-8d2d-84ae4f96e58e | Office 2021 Perpetual Enterprise Channel | PerpetualVL2021 | | 17 | | Production::LTSC2024 | 7983bac0-e531-40cf-be00-fd24fe66619c | Office 2024 Perpetual Enterprise Channel | PerpetualVL2024 | | 18 | | Production::DC | 7ffbc6bf-bc32-4f92-8982-f9dd17fd3114 | Semi-Annual Enterprise Channel | SemiAnnual | | 19 | | Production::MEC | 55336b82-a18d-4dd6-b5f6-9e5095c314a6 | Monthly Enterprise Channel | MonthlyEnterprise | | 20 | | Production::CC | 492350f6-3a01-4f97-b9c0-c7c6ddf67d60 | Current Channel | Current | | 21 | | Insiders::LTSC | 2e148de9-61c8-4051-b103-4af54baffbb4 | Office 2019 Perpetual Enterprise Channel | | ⛔ | 22 | | Insiders::FRDC | b8f9b850-328d-4355-9145-c59439a0c4cf | Semi-Annual Enterprise Channel (Preview) | SemiAnnualPreview | | 23 | | Insiders::CC | 64256afe-f5d9-4f86-8936-8840a6a4f5be | Current Channel (Preview) | CurrentPreview | | 24 | | Insiders::DevMain | 5440fd1f-7ecb-4221-8110-145efaa6372f | Beta Channel | BetaChannel | | 25 | | Microsoft::LTSC | 1d2d2ea6-1680-4c56-ac58-a441c8c24ff | Office 2019 Perpetual Enterprise Channel | | | 26 | | Microsoft::LTSC2021 | 86752282-5841-4120-ac80-db03ae6b5fdb | Office 2021 Perpetual Enterprise Channel | | | 27 | | Microsoft::LTSC2024 | c02d8fe6-5242-4da8-972f-82ee55e00671 | Office 2024 Perpetual Enterprise Channel | | | 28 | | Microsoft::DC | f4f024c8-d611-4748-a7e0-02b6e754c0fe | Semi-Annual Enterprise Channel | | | 29 | | Microsoft::FRDC | 9a3b7ff2-58ed-40fd-add5-1e5158059d1c | Semi-Annual Enterprise Channel (Preview) | | | 30 | | Microsoft::CC | 5462eee5-1e97-495b-9370-853cd873bb07 | Beta Channel | | | 31 | | Microsoft::DevMain | b61285dd-d9f7-41f2-9757-8f61cba4e9c | Beta Channel | | | 32 | | Dogfood::DCEXT | c4a7726f-06ea-48e2-a13a-9d78849eb706 | Semi-Annual Enterprise Channel | | ⛔ | 33 | | Dogfood::FRDC | 834504cc-dc55-4c6d-9e71-e024d0253f6d | Semi-Annual Enterprise Channel (Preview) | | ⛔ | 34 | | Dogfood::CC | f3260cf1-a92c-4c75-b02e-d64c0a86a968 | Beta Channel | | | 35 | | Dogfood::DevMain | ea4a4090-de26-49d7-93c1-91bff9e53fc3 | Beta Channel | | | 36 | 37 |
 
38 |
© 2024 Yerong の小窝. | Powered by Yerong | Ver 1.6 | Source
39 | -------------------------------------------------------------------------------- /doc/Tech Articles/Languages.md: -------------------------------------------------------------------------------- 1 | # Office Languages Information 2 | 3 | For more information about language ID, please visit [Languages, culture codes, and companion proofing languages.](https://docs.microsoft.com/en-us/deployoffice/overview-deploying-languages-microsoft-365-apps#languages-culture-codes-and-companion-proofing-languages). 4 | 5 | ## Languages List 6 | 7 | | Language | English Name | Culture (ll-cc) | Contains Proofing Languages | ID | Type | 8 | | :-- | :-- | :--: | :-- | :--: | :--: | 9 | | Afrikaans (Suid-Afrika) | Afrikaans (South Africa) | af-za | | 1078 | Partial | 10 | | አማርኛ (ኢትዮጵያ) | Amharic (Ethiopia) | am-et | | 1118 | PartialWithoutProofingTools | 11 | | العربية (المملكة العربية السعودية) | Arabic (Saudi Arabia) | ar-sa | Arabic, English, French | 1025 | Full | 12 | | অসমীয়া (ভাৰত) | Assamese (India) | as-in | | 1101 | Partial | 13 | | azərbaycan (latın, Azərbaycan) | Azerbaijani (Latin, Azerbaijan) | az-Latn-az | | 1068 | Partial | 14 | | беларуская (Беларусь) | Belarusian (Belarus) | be-by | | 1059 | PartialWithoutProofingTools | 15 | | български (България) | Bulgarian (Bulgaria) | bg-bg | Bulgarian, English, German, Russian | 1026 | Full | 16 | | বাংলা (বাংলাদেশ) | Bangla (Bangladesh) | bn-bd | | 2117 | Partial | 17 | | বাংলা (ভারত) | Bangla (India) | bn-in | | 1093 | Partial | 18 | | bosanski (latinica, Bosna i Hercegovina) | Bosnian (Latin, Bosnia & Herzegovina) | bs-latn-ba | | 5146 | Partial | 19 | | català (Espanya) | Catalan (Spain) | ca-es | | 1027 | Partial | 20 | | valencià (Espanya, valencià) | Catalan (Spain, Valencian) | ca-es-valencia | | 2051 | Partial | 21 | | čeština (Česko) | Czech (Czechia) | cs-cz | Czech, English, German, Slovak | 1029 | Full | 22 | | Cymraeg (Y Deyrnas Unedig) | Welsh (United Kingdom) | cy-gb | | 1106 | Partial | 23 | | dansk (Danmark) | Danish (Denmark) | da-dk | Danish, English, German, Swedish | 1030 | Full | 24 | | Deutsch (Deutschland) | German (Germany) | de-de | German, English, French, Italian | 1031 | Full | 25 | | Ελληνικά (Ελλάδα) | Greek (Greece) | el-gr | Greek, English, French, German | 1032 | Full | 26 | | English (United Kingdom) | English (United Kingdom) | en-gb | English, Irish, Scottish Gaelic, Welsh | 2057 | Full | 27 | | English (United States) | English (United States) | en-us | English, French, Spanish | 1033 | Full | 28 | | español (España) | Spanish (Spain) | es-es | Spanish, English, French, Basque (Basque), Catalan, Galician, Brazilian | 3082 | Full | 29 | | español (México) | Spanish (Mexico) | es-mx | Spanish, English, French, Brazilian | 2058 | Full | 30 | | eesti (Eesti) | Estonian (Estonia) | et-ee | Estonian, English, German, Russian, Finnish, | 1061 | Full | 31 | | euskara (Espainia) | Basque (Spain) | eu-es | | 1069 | Partial | 32 | | فارسی (ایران) | Persian (Iran) | fa-ir | | 1065 | Partial | 33 | | suomi (Suomi) | Finnish (Finland) | fi-fi | Finnish, English, Swedish, German, Russian | 1035 | Full | 34 | | Filipino (Pilipinas) | Filipino (Philippines) | fil-ph | | 1124 | PartialWithoutProofingTools | 35 | | français (Canada) | French (Canada) | fr-ca | French, English, German, Dutch, Arabic, Spanish | 3084 | Full | 36 | | français (France) | French (France) | fr-fr | French, English, German, Dutch, Arabic, Spanish | 1036 | Full | 37 | | Gaeilge (Éire) | Irish (Ireland) | ga-ie | | 2108 | Partial | 38 | | Gàidhlig (An Rìoghachd Aonaichte) | Scottish Gaelic (United Kingdom) | gd-gb | | 1169 | Partial | 39 | | galego (España) | Galician (Spain) | gl-es | | 1110 | Partial | 40 | | ગુજરાતી (ભારત) | Gujarati (India) | gu-in | | 1095 | Partial | 41 | | Hausa (Latin, Najeriya) | Hausa (Latin, Nigeria) | ha-Latn-ng | | 1128 | Proofing | 42 | | עברית (ישראל) | Hebrew (Israel) | he-il | Hebrew, English, French, Arabic, Russian | 1037 | Full | 43 | | हिन्दी (भारत) | Hindi (India) | hi-in | Hindi, English, Tamil, Telegu, Marathi, Kannada, Gujarati, Punjabi, Urdu | 1081 | Full | 44 | | hrvatski (Hrvatska) | Croatian (Croatia) | hr-hr | Croatian, English, German, Serbian, Italian | 1050 | Full | 45 | | magyar (Magyarország) | Hungarian (Hungary) | hu-hu | Hungarian, English, German | 1038 | Full | 46 | | հայերեն (Հայաստան) | Armenian (Armenia) | hy-am | | 1067 | Partial | 47 | | Bahasa Indonesia (Indonesia) | Indonesian (Indonesia) | id-id | Indonesian, English | 1057 | Full | 48 | | Asụsụ Igbo (Naịjịrịa) | Igbo (Nigeria) | ig-ng | | 1136 | Proofing | 49 | | íslenska (Ísland) | Icelandic (Iceland) | is-is | | 1039 | Partial | 50 | | italiano (Italia) | Italian (Italy) | it-it | Italian, English, French, German | 1040 | Full | 51 | | 日本語 (日本) | Japanese (Japan) | ja-jp | Japanese, English | 1041 | Full | 52 | | ქართული (საქართველო) | Georgian (Georgia) | ka-ge | | 1079 | Partial | 53 | | қазақ тілі (Қазақстан) | Kazakh (Kazakhstan) | kk-kz | Kazakh, English, Russian | 1087 | Full | 54 | | ខ្មែរ (កម្ពុជា) | Khmer (Cambodia) | km-kh | | 1107 | PartialWithoutProofingTools | 55 | | ಕನ್ನಡ (ಭಾರತ) | Kannada (India) | kn-in | | 1099 | Partial | 56 | | कोंकणी (भारत) | Konkani (India) | kok-in | | 1111 | Partial | 57 | | 한국어(대한민국) | Korean (Korea) | ko-kr | Korean, English | 1042 | Full | 58 | | кыргызча (Кыргызстан) | Kyrgyz (Kyrgyzstan) | ky-kg | | 1088 | Partial | 59 | | Lëtzebuergesch (Lëtzebuerg) | Luxembourgish (Luxembourg) | lb-lu | | 1134 | Partial | 60 | | lietuvių (Lietuva) | Lithuanian (Lithuania) | lt-lt | Lithuanian, English, German, Russian, Polish | 1063 | Full | 61 | | latviešu (Latvija) | Latvian (Latvia) | lv-lv | Latvian, English, German, Russian | 1062 | Full | 62 | | Māori (Aotearoa) | Maori (New Zealand) | mi-nz | | 1153 | Partial | 63 | | македонски (Северна Македонија) | Macedonian (North Macedonia) | mk-mk | | 1071 | Partial | 64 | | മലയാളം (ഇന്ത്യ) | Malayalam (India) | ml-in | | 1100 | Partial | 65 | | монгол (Монгол) | Mongolian (Mongolia) | mn-mn | | 1104 | PartialWithoutProofingTools | 66 | | मराठी (भारत) | Marathi (India) | mr-in | | 1102 | Partial | 67 | | Melayu (Malaysia) | Malay (Malaysia) | ms-my | Malay, English, Chinese (Simplified) | 1086 | Full | 68 | | Malti (Malta) | Maltese (Malta) | mt-mt | | 1082 | Partial | 69 | | norsk bokmål (Norge) | Norwegian Bokmål (Norway) | nb-no | Norwegian (Bk), English, German, Norwegian (Ny) | 1044 | Full | 70 | | नेपाली (नेपाल) | Nepali (Nepal) | ne-np | | 1121 | Partial | 71 | | Nederlands (Nederland) | Dutch (Netherlands) | nl-nl | Dutch, English, French, German | 1043 | Full | 72 | | nynorsk (Noreg) | Norwegian Nynorsk (Norway) | nn-no | Norwegian (Bk), English, German, Norwegian (Ny) | 2068 | Partial | 73 | | Sesotho sa Leboa (Afrika Borwa) | Sesotho sa Leboa (South Africa) | nso-za | | 1132 | Proofing | 74 | | ଓଡ଼ିଆ (ଭାରତ) | Odia (India) | or-in | | 1096 | Partial | 75 | | ਪੰਜਾਬੀ (ਭਾਰਤ) | Punjabi (India) | pa-in | | 1094 | Partial | 76 | | polski (Polska) | Polish (Poland) | pl-pl | Polish, English, German | 1045 | Full | 77 | | درى (افغانستان) | Dari (Afghanistan) | prs-af | | 1164 | PartialWithoutProofingTools | 78 | | پښتو (افغانستان) | Pashto (Afghanistan) | ps-af | | 1123 | Proofing | 79 | | português (Brasil) | Portuguese (Brazil) | pt-br | Brazilian, English, Spanish | 1046 | Full | 80 | | português (Portugal) | Portuguese (Portugal) | pt-pt | Portuguese, English, French, Spanish | 2070 | Full | 81 | | runasimi (Peru) | Quechua (Peru) | quz-pe | | 3179 | PartialWithoutProofingTools | 82 | | rumantsch (Svizra) | Romansh (Switzerland) | rm-ch | | 1047 | Proofing | 83 | | română (România) | Romanian (Romania) | ro-ro | Romanian, English, French | 1048 | Full | 84 | | русский (Россия) | Russian (Russia) | ru-ru | Russian, English, Ukrainian, German | 1049 | Full | 85 | | Kinyarwanda (U Rwanda) | Kinyarwanda (Rwanda) | rw-rw | | 1159 | Proofing | 86 | | سنڌي (عربي, پاڪستان) | Sindhi (Arabic, Pakistan) | sd-Arab-pk | | 2137 | PartialWithoutProofingTools | 87 | | සිංහල (ශ්‍රී ලංකාව) | Sinhala (Sri Lanka) | si-lk | | 1115 | Partial | 88 | | slovenčina (Slovenská republika) | Slovak (Slovakia) | sk-sk | Slovak, English, Czech, Hungarian, German | 1051 | Full | 89 | | slovenščina (Slovenija) | Slovenian (Slovenia) | sl-si | Slovenian, English, German, Italian, Croatian | 1060 | Full | 90 | | shqip (Shqipëri) | Albanian (Albania) | sq-al | | 1052 | Partial | 91 | | српски (ћирилица, Босна и Херцеговина) | Serbian (Cyrillic, Bosnia & Herzegovina) | sr-cyrl-ba | | 7194 | Partial | 92 | | српски (ћирилица, Србија) | Serbian (Cyrillic, Serbia) | sr-cyrl-rs | | 10266 | Partial | 93 | | srpski (Srbija) | Serbian (Latin, Serbia) | sr-Latn-rs | Serbian (Latin), English, German, French, Croatian | 9242 | Full | 94 | | svenska (Sverige) | Swedish (Sweden) | sv-se | Swedish, English, Finnish, German | 1053 | Full | 95 | | Kiswahili (Kenya) | Kiswahili (Kenya) | sw-ke | | 1089 | Partial | 96 | | தமிழ் (இந்தியா) | Tamil (India) | ta-in | | 1097 | Partial | 97 | | తెలుగు (భారతదేశం) | Telugu (India) | te-in | | 1098 | Partial | 98 | | ไทย (ไทย) | Thai (Thailand) | th-th | Thai, English, French | 1054 | Full | 99 | | türkmen dili (Türkmenistan) | Turkmen (Turkmenistan) | tk-tm | | 1090 | PartialWithoutProofingTools | 100 | | Setswana (Aforika Borwa) | Setswana (South Africa) | tn-za | | 1074 | Proofing | 101 | | Türkçe (Türkiye) | Turkish (Turkey) | tr-tr | Turkish, English, French, German | 1055 | Full | 102 | | татар (Россия) | Tatar (Russia) | tt-ru | | 1092 | Partial | 103 | | ئۇيغۇرچە (جۇڭگو) | Uyghur (China) | ug-cn | | 1152 | PartialWithoutProofingTools | 104 | | українська (Україна) | Ukrainian (Ukraine) | uk-ua | Ukrainian, English, Russian, German | 1058 | Full | 105 | | اردو (پاکستان) | Urdu (Pakistan) | ur-pk | | 1056 | Partial | 106 | | O'zbekcha (O'zbekiston Respublikasi) | Uzbek (Latin, Uzbekistan) | uz-Latn-uz | | 1091 | Partial | 107 | | Tiếng Việt (Việt Nam) | Vietnamese (Vietnam) | vi-vn | Vietnamese, English, French | 1066 | Full | 108 | | Wolof (Senegaal) | Wolof (Senegal) | wo-sn | | 1160 | Proofing | 109 | | isiXhosa (eMzantsi Afrika) | isiXhosa (South Africa) | xh-za | | 1076 | Proofing | 110 | | Èdè Yorùbá (Orilẹ̀-èdè Nàìjíríà) | Yoruba (Nigeria) | yo-ng | | 1130 | Proofing | 111 | | 中文(中国) | Chinese (China) | zh-cn | Chinese (Simplified), English | 2052 | Full | 112 | | 中文(台灣) | Chinese (Taiwan) | zh-tw | Chinese (Traditional), English | 1028 | Full | 113 | | isiZulu (iNingizimu Afrika) | isiZulu (South Africa) | zu-za | | 1077 | Proofing | 114 | 115 |
 
116 |
© 2024 Yerong の小窝. | Powered by Yerong | Ver 1.3 | Source
117 | -------------------------------------------------------------------------------- /doc/XML Configurations/Example.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /src/OfficeToolPlus/Dictionaries/ProductsName/en-gb.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | Access 2019 7 | Access 2019 - Volume Licence 8 | Access 2021 9 | Access LTSC - Volume Licence 10 | Access 2024 11 | Access LTSC - Volume Licence 12 | Access 2016 13 | Access Runtime 2019 14 | Access Runtime 2016 15 | Access 2016 - Volume Licence 16 | Excel 2019 17 | Excel 2019 - Volume Licence 18 | Excel 2021 19 | Excel LTSC - Volume Licence 20 | Excel 2024 21 | Excel LTSC - Volume Licence 22 | Excel 2016 23 | Excel 2016 - Volume Licence 24 | Office Home 2024 25 | Office Home and Business 2019 26 | Office Home and Business 2021 27 | Office Home and Business 2024 28 | Office Home and Business Premium 29 | Office Home and Business 2016 30 | Office Home and Student 2019 31 | Office Home and Student 2021 32 | Office Home and Student 2016 33 | Office Home and Student 2016 34 | Office Mondo 2016 35 | Office Mondo 2016 - Volume Licence 36 | Microsoft 365 Apps Basic 37 | Microsoft 365 Apps for business 38 | Microsoft 365 39 | 40 | Microsoft 365 (Family & Personal) 41 | Microsoft 365 Apps for enterprise 42 | Microsoft 365 Small Business Premium 43 | OneNote (Free) 44 | OneNote 2021 45 | OneNote 2016 46 | OneNote 2016 - Volume Licence 47 | Outlook 2019 48 | Outlook 2019 - Volume Licence 49 | Outlook 2021 50 | Outlook LTSC - Volume Licence 51 | Outlook 2024 52 | Outlook LTSC - Volume Licence 53 | Outlook 2016 54 | Outlook 2016 - Volume Licence 55 | Office Personal 2019 56 | Office Personal 2021 57 | Office Personal Premium 58 | Office Personal 2016 59 | PowerPoint 2019 60 | PowerPoint 2019 - Volume Licence 61 | PowerPoint 2021 62 | PowerPoint LTSC - Volume Licence 63 | PowerPoint 2024 64 | PowerPoint LTSC - Volume Licence 65 | PowerPoint 2016 66 | PowerPoint 2016 - Volume Licence 67 | Office Professional 2019 68 | Office Professional 2021 69 | Office Professional Premium 70 | Office Professional 2016 71 | Project Professional 2019 72 | Project Professional 2019 - Volume Licence 73 | Project Professional 2021 74 | Project Professional 2021 - Volume Licence 75 | Project Professional 2024 76 | Project Professional 2024 - Volume Licence 77 | Project Professional 2016 78 | Project Professional 2016 - Volume Licence 79 | Project Professional 2016 - Volume Licence 80 | Project Standard 2019 81 | Project Standard 2019 - Volume Licence 82 | Project Standard 2021 83 | Project Standard 2021 - Volume Licence 84 | Project Standard 2024 85 | Project Standard 2024 - Volume Licence 86 | Project Standard 2016 87 | Project Standard 2016 - Volume Licence 88 | Project Standard 2016 - Volume Licence 89 | Office Professional Plus 2019 90 | Office Professional Plus 2019 - Volume Licence 91 | Office Professional Plus 2021 92 | Office LTSC Professional Plus 2021 - Volume Licence 93 | Office Professional Plus 2024 94 | Office LTSC Professional Plus 2024 - Volume Licence 95 | 96 | Office LTSC Professional Plus 2021 (SPLA) - Volume License 97 | Office Professional Plus 2016 98 | Office Professional Plus 2016 - Volume Licence 99 | Publisher 2019 100 | Publisher 2019 - Volume Licence 101 | Publisher 2021 102 | Publisher LTSC - Volume Licence 103 | Publisher 2016 104 | Publisher 2016 - Volume Licence 105 | Skype for Business 2019 106 | Skype for Business 2019 - Volume Licence 107 | Skype for Business 2021 108 | Skype for Business LTSC - Volume Licence 109 | Skype for Business LTSC - Volume Licence 110 | Skype for Business Basic 2019 111 | Skype for Business Basic 2016 112 | Skype for Business 2016 113 | Skype for Business 2016 - Volume Licence 114 | Skype for Business 2016 115 | Office Standard 2019 116 | Office Standard 2019 - Volume Licence 117 | Office Standard 2021 118 | Office LTSC Standard 2021 - Volume Licence 119 | Office LTSC Standard 2024 - Volume Licence 120 | 121 | Office LTSC Standard 2021 (SPLA)‎ - Volume Licence 122 | Office Standard 2016 123 | Office Standard 2016 - Volume Licence 124 | Visio Professional 2019 125 | Visio Professional 2019 - Volume Licence 126 | Visio Professional 2021 127 | Visio LTSC Professional 2021 - Volume Licence 128 | Visio Professional 2024 129 | Visio LTSC Professional 2024 - Volume Licence 130 | Visio Professional 2016 131 | Visio Professional 2016 - Volume Licence 132 | Visio Professional 2016 - Volume Licence 133 | Visio Standard 2019 134 | Visio Standard 2019 - Volume Licence 135 | Visio Standard 2021 136 | Visio LTSC Standard 2021 - Volume Licence 137 | Visio Standard 2024 138 | Visio LTSC Standard 2024 - Volume Licence 139 | Visio Standard 2016 140 | Visio Standard 2016 - Volume Licence 141 | Visio Standard 2016 - Volume Licence 142 | Word 2019 143 | Word 2019 - Volume Licence 144 | Word 2021 145 | Word LTSC - Volume Licence 146 | Word 2024 147 | Word LTSC - Volume Licence 148 | Word 2016 149 | Word 2016 - Volume Licence 150 | Language package 151 | Proofing tool 152 | 153 | -------------------------------------------------------------------------------- /src/OfficeToolPlus/Dictionaries/ProductsName/en-us.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | Access 2019 7 | Access 2019 - Volume License 8 | Access 2021 9 | Access LTSC - Volume License 10 | Access 2024 11 | Access LTSC - Volume License 12 | Access 2016 13 | Access Runtime 2019 14 | Access Runtime 2016 15 | Access 2016 - Volume License 16 | Excel 2019 17 | Excel 2019 - Volume License 18 | Excel 2021 19 | Excel LTSC - Volume License 20 | Excel 2024 21 | Excel LTSC - Volume License 22 | Excel 2016 23 | Excel 2016 - Volume License 24 | Office Home 2024 25 | Office Home and Business 2019 26 | Office Home and Business 2021 27 | Office Home and Business 2024 28 | Office Home and Business Premium 29 | Office Home and Business 2016 30 | Office Home and Student 2019 31 | Office Home and Student 2021 32 | Office Home and Student 2016 33 | Office Home and Student 2016 34 | Office Mondo 2016 35 | Office Mondo 2016 - Volume License 36 | Microsoft 365 Apps Basic 37 | Microsoft 365 Apps for business 38 | Microsoft 365 39 | 40 | Microsoft 365 (Family & Personal)‎ 41 | Microsoft 365 Apps for enterprise 42 | Microsoft 365 Small Business Premium 43 | OneNote (Free) 44 | OneNote 2021 45 | OneNote 2016 46 | OneNote 2016 - Volume License 47 | Outlook 2019 48 | Outlook 2019 - Volume License 49 | Outlook 2021 50 | Outlook LTSC - Volume License 51 | Outlook 2024 52 | Outlook LTSC - Volume License 53 | Outlook 2016 54 | Outlook 2016 - Volume License 55 | Office Personal 2019 56 | Office Personal 2021 57 | Office Personal Premium 58 | Office Personal 2016 59 | PowerPoint 2019 60 | PowerPoint 2019 - Volume License 61 | PowerPoint 2021 62 | PowerPoint LTSC - Volume License 63 | PowerPoint 2024 64 | PowerPoint LTSC - Volume License 65 | PowerPoint 2016 66 | PowerPoint 2016 - Volume License 67 | Office Professional 2019 68 | Office Professional 2021 69 | Office Professional Premium 70 | Office Professional 2016 71 | Project Professional 2019 72 | Project Professional 2019 - Volume License 73 | Project Professional 2021 74 | Project Professional 2021 - Volume License 75 | Project Professional 2024 76 | Project Professional 2024 - Volume License 77 | Project Professional 2016 78 | Project Professional 2016 - Volume License 79 | Project Professional 2016 - Volume License 80 | Project Standard 2019 81 | Project Standard 2019 - Volume License 82 | Project Standard 2021 83 | Project Standard 2021 - Volume License 84 | Project Standard 2024 85 | Project Standard 2024 - Volume License 86 | Project Standard 2016 87 | Project Standard 2016 - Volume License 88 | Project Standard 2016 - Volume License 89 | Office Professional Plus 2019 90 | Office Professional Plus 2019 - Volume License 91 | Office Professional Plus 2021 92 | Office LTSC Professional Plus 2021 - Volume License 93 | Office Professional Plus 2024 94 | Office LTSC Professional Plus 2024 - Volume License 95 | 96 | Office LTSC Professional Plus 2021 (SPLA)‎ - Volume License 97 | Office Professional Plus 2016 98 | Office Professional Plus 2016 - Volume License 99 | Publisher 2019 100 | Publisher 2019 - Volume License 101 | Publisher 2021 102 | Publisher LTSC - Volume License 103 | Publisher 2016 104 | Publisher 2016 - Volume License 105 | Skype for Business 2019 106 | Skype for Business 2019 - Volume License 107 | Skype for Business 2021 108 | Skype for Business LTSC - Volume License 109 | Skype for Business LTSC - Volume License 110 | Skype for Business Basic 2019 111 | Skype for Business Basic 2016 112 | Skype for Business 2016 113 | Skype for Business 2016 - Volume License 114 | Skype for Business 2016 115 | Office Standard 2019 116 | Office Standard 2019 - Volume License 117 | Office Standard 2021 118 | Office LTSC Standard 2021 - Volume License 119 | Office LTSC Standard 2024 - Volume License 120 | 121 | Office LTSC Standard 2021 (SPLA)‎ - Volume License 122 | Office Standard 2016 123 | Office Standard 2016 - Volume License 124 | Visio Professional 2019 125 | Visio Professional 2019 - Volume License 126 | Visio Professional 2021 127 | Visio LTSC Professional 2021 - Volume License 128 | Visio Professional 2024 129 | Visio LTSC Professional 2024 - Volume License 130 | Visio Professional 2016 131 | Visio Professional 2016 - Volume License 132 | Visio Professional 2016 - Volume License 133 | Visio Standard 2019 134 | Visio Standard 2019 - Volume License 135 | Visio Standard 2021 136 | Visio LTSC Standard 2021 - Volume License 137 | Visio Standard 2024 138 | Visio LTSC Standard 2024 - Volume License 139 | Visio Standard 2016 140 | Visio Standard 2016 - Volume License 141 | Visio Standard 2016 - Volume License 142 | Word 2019 143 | Word 2019 - Volume License 144 | Word 2021 145 | Word LTSC - Volume License 146 | Word 2024 147 | Word LTSC - Volume License 148 | Word 2016 149 | Word 2016 - Volume License 150 | Language package 151 | Proofing tool 152 | 153 | -------------------------------------------------------------------------------- /src/OfficeToolPlus/Dictionaries/ProductsName/es-es.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | Access 2019 7 | Access 2019 - Licencia Volumen 8 | Access 2021 9 | Access LTSC - Licencia Volumen 10 | Access 2024 11 | Access LTSC - Licencia Volumen 12 | Access 2016 13 | Access Runtime 2019 14 | Access Runtime 2016 15 | Access 2016 - Licencia Volumen 16 | Excel 2019 17 | Excel 2019 - Licencia Volumen 18 | Excel 2021 19 | Excel LTSC - Licencia Volumen 20 | Excel 2024 21 | Excel LTSC - Licencia Volumen 22 | Excel 2016 23 | Excel 2016 - Licencia Volumen 24 | Office Hogar 2024 25 | Office Hogar y Empresas 2019 26 | Office Hogar y Empresas 2021 27 | Office Home and Business 2024 28 | Office Hogar y Empresas Premium 29 | Office Hogar y Empresas 2016 30 | Office Hogar y Estudiantes 2019 31 | Office Hogar y Estudiantes 2021 32 | Office Hogar y Estudiantes 2016 33 | Office Hogar y Estudiantes 2016 34 | Office Mondo 2016 35 | Office Mondo 2016 - Licencia Volumen 36 | Microsoft 365 Apps Basic 37 | Microsoft 365 Apps para negocios 38 | Microsoft 365 39 | 40 | Microsoft 365 (Familia & Personal) 41 | Microsoft 365 Apps para empresa 42 | Microsoft 365 Premium para pequeñas empresas 43 | OneNote (Free) 44 | OneNote 2021 45 | OneNote 2016 46 | OneNote 2016 - Licencia Volumen 47 | Outlook 2019 48 | Outlook 2019 - Licencia Volumen 49 | Outlook 2021 50 | Outlook LTSC - Licencia Volumen 51 | Outlook 2024 52 | Outlook LTSC - Licencia Volumen 53 | Outlook 2016 54 | Outlook 2016 - Licencia Volumen 55 | Office Personal 2019 56 | Office Personal 2021 57 | Office Personal Premium 58 | Office Personal 2016 59 | PowerPoint 2019 60 | PowerPoint 2019 - Licencia Volumen 61 | PowerPoint 2021 62 | PowerPoint LTSC - Licencia Volumen 63 | PowerPoint 2024 64 | PowerPoint LTSC - Licencia Volumen 65 | PowerPoint 2016 66 | PowerPoint 2016 - Licencia Volumen 67 | Office Profesional 2019 68 | Office Profesional 2021 69 | Office Profesional Premium 70 | Office Profesional 2016 71 | Project Profesional 2019 72 | Project Profesional 2019 - Licencia Volumen 73 | Project Profesional 2021 74 | Project Profesional 2021 - Licencia Volumen 75 | Project Profesional 2024 76 | Project Profesional 2024 - Licencia Volumen 77 | Project Profesional 2016 78 | Project Profesional 2016 - Licencia Volumen 79 | Project Profesional 2016 - Licencia Volumen 80 | Project Standard 2019 81 | Project Standard 2019 - Licencia Volumen 82 | Project Standard 2021 83 | Project Standard 2021 - Licencia Volumen 84 | Project Standard 2024 85 | Project Standard 2024 - Licencia Volumen 86 | Project Standard 2016 87 | Project Standard 2016 - Licencia Volumen 88 | Project Standard 2016 - Licencia Volumen 89 | Office Profesional Plus 2019 90 | Office Profesional Plus 2019 - Licencia Volumen 91 | Office Profesional Plus 2021 92 | Office LTSC Profesional Plus 2021 - Licencia Volumen 93 | Office Profesional Plus 2024 94 | Office LTSC Profesional Plus 2024 - Licencia Volumen 95 | 96 | Office LTSC Profesional Plus 2021 (SPLA) - Licencia Volumen 97 | Office Profesional Plus 2016 98 | Office Profesional Plus 2016 - Licencia Volumen 99 | Publisher 2019 100 | Publisher 2019 - Licencia Volumen 101 | Publisher 2021 102 | Publisher LTSC - Licencia Volumen 103 | Publisher 2016 104 | Publisher 2016 - Licencia Volumen 105 | Skype para Negocios 2019 106 | Skype para Negocios 2019 - Licencia Volumen 107 | Skype para Negocios 2021 108 | Skype para Negocios LTSC - Licencia Volumen 109 | Skype para Negocios LTSC - Licencia Volumen 110 | Skype Básico para Negocios 2019 111 | Skype Básico para Negocios 2016 112 | Skype para Negocios 2016 113 | Skype para Negocios 2016 - Licencia Volumen 114 | Skype para Negocios 2016 115 | Office Standard 2019 116 | Office Standard 2019 - Licencia Volumen 117 | Office Standard 2021 118 | Office LTSC Standard 2021 - Licencia Volumen 119 | Office LTSC Standard 2024 - Licencia Volumen 120 | 121 | Office LTSC Standard 2021 (SPLA) - Licencia Volumen 122 | Office Standard 2016 123 | Office Standard 2016 - Licencia Volumen 124 | Visio Profesional 2019 125 | Visio Profesional 2019 - Licencia Volumen 126 | Visio Profesional 2021 127 | Visio LTSC Profesional 2021 - Licencia Volumen 128 | Visio Profesional 2024 129 | Visio LTSC Profesional 2024 - Licencia Volumen 130 | Visio Profesional 2016 131 | Visio Profesional 2016 - Licencia Volumen 132 | Visio Profesional 2016 - Licencia Volumen 133 | Visio Standard 2019 134 | Visio Standard 2019 - Licencia Volumen 135 | Visio Standard 2021 136 | Visio LTSC Standard 2021 - Licencia Volumen 137 | Visio Standard 2024 138 | Visio LTSC Standard 2024 - Licencia Volumen 139 | Visio Standard 2016 140 | Visio Standard 2016 - Licencia Volumen 141 | Visio Standard 2016 - Licencia Volumen 142 | Word 2019 143 | Word 2019 - Licencia Volumen 144 | Word 2021 145 | Word LTSC - Licencia Volumen 146 | Word 2024 147 | Word LTSC - Licencia Volumen 148 | Word 2016 149 | Word 2016 - Licencia Volumen 150 | Language package 151 | Proofing tool 152 | 153 | -------------------------------------------------------------------------------- /src/OfficeToolPlus/Dictionaries/ProductsName/fr-fr.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | Access 2019 7 | Access 2019 - Licence en volume 8 | Access 2021 9 | Access LTSC - Licence en volume 10 | Access 2024 11 | Access LTSC - Licence en volume 12 | Access 2016 13 | Access Runtime 2019 14 | Access Runtime 2016 15 | Access 2016 - Licence en volume 16 | Excel 2019 17 | Excel 2019 - Licence en volume 18 | Excel 2021 19 | Excel LTSC - Licence en volume 20 | Excel 2024 21 | Excel LTSC - Licence en volume 22 | Excel 2016 23 | Excel 2016 - Licence en volume 24 | Office Famille 2024 25 | Office Famille et Petites entreprises 2019 26 | Office Famille et Petites entreprises 2021 27 | Office Home and Business 2024 28 | Office Famille et Petites entreprises Premium 29 | Office Famille et Petites entreprises 2016 30 | Office Famille et Étudiant 2019 31 | Office Famille et Étudiant 2021 32 | Office Famille et Étudiant 2016 33 | Office Famille et Étudiant 2016 34 | Office Mondo 2016 35 | Office Mondo 2016 - Licence en volume 36 | Microsoft 365 Apps Basic 37 | Microsoft 365 Apps for business 38 | Microsoft 365 39 | 40 | Microsoft 365 (Famille & Personnel) 41 | Microsoft 365 Apps for enterprise 42 | Microsoft 365 Petites entreprises Premium 43 | OneNote (Free) 44 | OneNote 2021 45 | OneNote 2016 46 | OneNote 2016 - Licence en volume 47 | Outlook 2019 48 | Outlook 2019 - Licence en volume 49 | Outlook 2021 50 | Outlook LTSC - Licence en volume 51 | Outlook 2024 52 | Outlook LTSC - Licence en volume 53 | Outlook 2016 54 | Outlook 2016 - Licence en volume 55 | Office Personnel 2019 56 | Office Personal 2021 57 | Office Personnel Premium 58 | Office Personnel 2016 59 | PowerPoint 2019 60 | PowerPoint 2019 - Licence en volume 61 | PowerPoint 2021 62 | PowerPoint LTSC - Licence en volume 63 | PowerPoint 2024 64 | PowerPoint LTSC - Licence en volume 65 | PowerPoint 2016 66 | PowerPoint 2016 - Licence en volume 67 | Office Professionnel 2019 68 | Office Professionnel 2021 69 | Office Professionnel Premium 70 | Office Professionnel 2016 71 | Project Professionnel 2019 72 | Project Professionnel 2019 - Licence en volume 73 | Project Professionnel 2021 74 | Project Professionnel 2021 - Licence en volume 75 | Project Professionnel 2024 76 | Project Professionnel 2024 - Licence en volume 77 | Project Professionnel 2016 78 | Project Professionnel 2016 - Licence en volume 79 | Project Professionnel 2016 - Licence en volume 80 | Project Standard 2019 81 | Project Standard 2019 - Licence en volume 82 | Project Standard 2021 83 | Project Standard 2021 - Licence en volume 84 | Project Standard 2024 85 | Project Standard 2024 - Licence en volume 86 | Project Standard 2016 87 | Project Standard 2016 - Licence en volume 88 | Project Standard 2016 - Licence en volume 89 | Office Professionnel Plus 2019 90 | Office Professionnel Plus 2019 - Licence en volume 91 | Office Professionnel Plus 2021 92 | Office LTSC Professionnel Plus 2021 - Licence en volume 93 | Office Professionnel Plus 2024 94 | Office LTSC Professionnel Plus 2024 - Licence en volume 95 | 96 | Office LTSC Professionnel Plus 2021 (SPLA) - Licence en volume 97 | Office Professionnel Plus 2016 98 | Office Professionnel Plus 2016 - Licence en volume 99 | Publisher 2019 100 | Publisher 2019 - Licence en volume 101 | Publisher 2021 102 | Publisher LTSC - Licence en volume 103 | Publisher 2016 104 | Publisher 2016 - Volume 105 | Skype pour Entreprise 2019 106 | Skype pour Entreprise 2019 - Licence en volume 107 | Skype pour Entreprise 2021 108 | Skype pour Entreprise LTSC - Licence en volume 109 | Skype pour Entreprise LTSC - Licence en volume 110 | Skype pour Base Entreprise 2019 111 | Skype pour Base Entreprise 2016 112 | Skype pour Entreprise 2016 113 | Skype pour Entreprise 2016 - Licence en volume 114 | Skype pour Entreprise 2016 115 | Office Standard 2019 116 | Office Standard 2019 - Licence en volume 117 | Office Standard 2021 118 | Office LTSC Standard 2021 - Licence en volume 119 | Office LTSC Standard 2024 - Licence en volume 120 | 121 | Office LTSC Standard 2021 (SPLA)‎ - Licence en volume 122 | Office Standard 2016 123 | Office Standard 2016 - Licence en volume 124 | Visio Professionnel 2019 125 | Visio Professionnel 2019 - Licence en volume 126 | Visio Professionnel 2021 127 | Visio LTSC Professionnel 2021 - Licence en volume 128 | Visio Professionnel 2024 129 | Visio LTSC Professionnel 2024 - Licence en volume 130 | Visio Professionnel 2016 131 | Visio Professionnel 2016 - Licence en volume 132 | Visio Professionnel 2016 - Licence en volume 133 | Visio Standard 2019 134 | Visio Standard 2019 - Licence en volume 135 | Visio Standard 2021 136 | Visio LTSC Standard 2021 - Licence en volume 137 | Visio Standard 2024 138 | Visio LTSC Standard 2024 - Licence en volume 139 | Visio Standard 2016 140 | Visio Standard 2016 - Licence en volume 141 | Visio Standard 2016 - Licence en volume 142 | Word 2019 143 | Word 2019 - Licence en volume 144 | Word 2021 145 | Word LTSC - Licence en volume 146 | Word 2024 147 | Word LTSC - Licence en volume 148 | Word 2016 149 | Word 2016 - Licence en volume 150 | Pack de langue 151 | Outil de verification 152 | 153 | -------------------------------------------------------------------------------- /src/OfficeToolPlus/Dictionaries/ProductsName/it-it.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | Access 2019 7 | Access 2019 - Volume License 8 | Access 2021 9 | Access LTSC - Volume License 10 | Access 2024 11 | Access LTSC - Volume License 12 | Access 2016 13 | Access Runtime 2019 14 | Access Runtime 2016 15 | Access 2016 - Volume License 16 | Excel 2019 17 | Excel 2019 - Volume License 18 | Excel 2021 19 | Excel LTSC - Volume License 20 | Excel 2024 21 | Excel LTSC - Volume License 22 | Excel 2016 23 | Excel 2016 - Volume License 24 | Office Home 2024 25 | Office Home and Business 2019 26 | Office Home and Business 2021 27 | Office Home and Business 2024 28 | Office Home and Business Premium 29 | Office Home and Business 2016 30 | Office Home and Student 2019 31 | Office Home and Student 2021 32 | Office Home and Student 2016 33 | Office Home and Student 2016 34 | Office Mondo 2016 35 | Office Mondo 2016 - Volume License 36 | Microsoft 365 Apps Basic 37 | Microsoft 365 Apps for business 38 | Microsoft 365 39 | 40 | Microsoft 365 (Family & Personal)‎ 41 | Microsoft 365 Apps for enterprise 42 | Microsoft 365 Small Business Premium 43 | OneNote (Free) 44 | OneNote 2021 45 | OneNote 2016 46 | OneNote 2016 - Volume License 47 | Outlook 2019 48 | Outlook 2019 - Volume License 49 | Outlook 2021 50 | Outlook LTSC - Volume License 51 | Outlook 2024 52 | Outlook LTSC - Volume License 53 | Outlook 2016 54 | Outlook 2016 - Volume License 55 | Office Personal 2019 56 | Office Personal 2021 57 | Office Personal Premium 58 | Office Personal 2016 59 | PowerPoint 2019 60 | PowerPoint 2019 - Volume License 61 | PowerPoint 2021 62 | PowerPoint LTSC - Volume License 63 | PowerPoint 2024 64 | PowerPoint LTSC - Volume License 65 | PowerPoint 2016 66 | PowerPoint 2016 - Volume License 67 | Office Professional 2019 68 | Office Professional 2021 69 | Office Professional Premium 70 | Office Professional 2016 71 | Project Professional 2019 72 | Project Professional 2019 - Volume License 73 | Project Professional 2021 74 | Project Professional 2021 - Volume License 75 | Project Professional 2024 76 | Project Professional 2024 - Volume License 77 | Project Professional 2016 78 | Project Professional 2016 - Volume License 79 | Project Professional 2016 - Volume License 80 | Project Standard 2019 81 | Project Standard 2019 - Volume License 82 | Project Standard 2021 83 | Project Standard 2021 - Volume License 84 | Project Standard 2024 85 | Project Standard 2024 - Volume License 86 | Project Standard 2016 87 | Project Standard 2016 - Volume License 88 | Project Standard 2016 - Volume License 89 | Office Professional Plus 2019 90 | Office Professional Plus 2019 - Volume License 91 | Office Professional Plus 2021 92 | Office LTSC Professional Plus 2021 - Volume License 93 | Office Professional Plus 2024 94 | Office LTSC Professional Plus 2024 - Volume License 95 | 96 | Office LTSC Professional Plus 2021 (SPLA)‎ - Volume License 97 | Office Professional Plus 2016 98 | Office Professional Plus 2016 - Volume License 99 | Publisher 2019 100 | Publisher 2019 - Volume License 101 | Publisher 2021 102 | Publisher LTSC - Volume License 103 | Publisher 2016 104 | Publisher 2016 - Volume License 105 | Skype for Business 2019 106 | Skype for Business 2019 - Volume License 107 | Skype for Business 2021 108 | Skype for Business LTSC - Volume License 109 | Skype for Business LTSC - Volume License 110 | Skype for Business Basic 2019 111 | Skype for Business Basic 2016 112 | Skype for Business 2016 113 | Skype for Business 2016 - Volume License 114 | Skype for Business 2016 115 | Office Standard 2019 116 | Office Standard 2019 - Volume License 117 | Office Standard 2021 118 | Office LTSC Standard 2021 - Volume License 119 | Office LTSC Standard 2024 - Volume License 120 | 121 | Office LTSC Standard 2021 (SPLA)‎ - Volume License 122 | Office Standard 2016 123 | Office Standard 2016 - Volume License 124 | Visio Professional 2019 125 | Visio Professional 2019 - Volume License 126 | Visio Professional 2021 127 | Visio LTSC Professional 2021 - Volume License 128 | Visio Professional 2024 129 | Visio LTSC Professional 2024 - Volume License 130 | Visio Professional 2016 131 | Visio Professional 2016 - Volume License 132 | Visio Professional 2016 - Volume License 133 | Visio Standard 2019 134 | Visio Standard 2019 - Volume License 135 | Visio Standard 2021 136 | Visio LTSC Standard 2021 - Volume License 137 | Visio Standard 2024 138 | Visio LTSC Standard 2024 - Volume License 139 | Visio Standard 2016 140 | Visio Standard 2016 - Volume License 141 | Visio Standard 2016 - Volume License 142 | Word 2019 143 | Word 2019 - Volume License 144 | Word 2021 145 | Word LTSC - Volume License 146 | Word 2024 147 | Word LTSC - Volume License 148 | Word 2016 149 | Word 2016 - Volume License 150 | Pacchetti lingua 151 | Strumento correzione 152 | 153 | -------------------------------------------------------------------------------- /src/OfficeToolPlus/Dictionaries/ProductsName/ja-jp.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | Access 2019 7 | Access 2019 - ボリューム ライセンス 8 | Access 2021 9 | Access LTSC - ボリューム ライセンス 10 | Access 2024 11 | Access LTSC - ボリューム ライセンス 12 | Access 2016 13 | Access Runtime 2019 14 | Access Runtime 2016 15 | Access 2016 - ボリューム ライセンス 16 | Excel 2019 17 | Excel 2019 - ボリューム ライセンス 18 | Excel 2021 19 | Excel LTSC - ボリューム ライセンス 20 | Excel 2024 21 | Excel LTSC - ボリューム ライセンス 22 | Excel 2016 23 | Excel 2016 - ボリューム ライセンス 24 | Office Home 2024 25 | Office Home and Business 2019 26 | Office Home and Business 2021 27 | Office Home and Business 2024 28 | Office Home and Business Premium 29 | Office Home and Business 2016 30 | Office Home and Student 2019 31 | Office Home and Student 2021 32 | Office Home and Student 2016 33 | Office Home and Student 2016 34 | Office Mondo 2016 35 | Office Mondo 2016 - ボリューム ライセンス 36 | Microsoft 365 Apps Basic 37 | Microsoft 365 Apps for business 38 | Microsoft 365 39 | 40 | Microsoft 365 (Family & Personal) 41 | Microsoft 365 Apps for enterprise 42 | Microsoft 365 Small Business Premium 43 | OneNote (Free) 44 | OneNote 2021 45 | OneNote 2016 46 | OneNote 2016 - ボリューム ライセンス 47 | Outlook 2019 48 | Outlook 2019 - ボリューム ライセンス 49 | Outlook 2021 50 | Outlook LTSC - ボリューム ライセンス 51 | Outlook 2024 52 | Outlook LTSC - ボリューム ライセンス 53 | Outlook 2016 54 | Outlook 2016 - ボリューム ライセンス 55 | Office Personal 2019 56 | Office Personal 2021 57 | Office Personal Premium 58 | Office Personal 2016 59 | PowerPoint 2019 60 | PowerPoint 2019 - ボリューム ライセンス 61 | PowerPoint 2021 62 | PowerPoint LTSC - ボリューム ライセンス 63 | PowerPoint 2024 64 | PowerPoint LTSC - ボリューム ライセンス 65 | PowerPoint 2016 66 | PowerPoint 2016 - ボリューム ライセンス 67 | Office Professional 2019 68 | Office Professional 2021 69 | Office Professional Premium 70 | Office Professional 2016 71 | Project Professional 2019 72 | Project Professional 2019 - ボリューム ライセンス 73 | Project Professional 2021 74 | Project Professional 2021 - ボリューム ライセンス 75 | Project Professional 2024 76 | Project Professional 2024 - ボリューム ライセンス 77 | Project Professional 2016 78 | Project Professional 2016 - ボリューム ライセンス 79 | Project Professional 2016 - ボリューム ライセンス 80 | Project Standard 2019 81 | Project Standard 2019 - ボリューム ライセンス 82 | Project Standard 2021 83 | Project Standard 2021 - ボリューム ライセンス 84 | Project Standard 2024 85 | Project Standard 2024 - ボリューム ライセンス 86 | Project Standard 2016 87 | Project Standard 2016 - ボリューム ライセンス 88 | Project Standard 2016 - ボリューム ライセンス 89 | Office Professional Plus 2019 90 | Office Professional Plus 2019 - ボリューム ライセンス 91 | Office Professional Plus 2021 92 | Office LTSC Professional Plus 2021 - ボリューム ライセンス 93 | Office Professional Plus 2024 94 | Office LTSC Professional Plus 2024 - ボリューム ライセンス 95 | 96 | Office LTSC Professional Plus 2021 (SPLA) - ボリューム ライセンス 97 | Office Professional Plus 2016 98 | Office Professional Plus 2016 - ボリューム ライセンス 99 | Publisher 2019 100 | Publisher 2019 - ボリューム ライセンス 101 | Publisher 2021 102 | Publisher LTSC - ボリューム ライセンス 103 | Publisher 2016 104 | Publisher 2016 - ボリューム ライセンス 105 | Skype for Business 2019 106 | Skype for Business 2019 - ボリューム ライセンス 107 | Skype for Business 2021 108 | Skype for Business LTSC - ボリューム ライセンス 109 | Skype for Business LTSC - ボリューム ライセンス 110 | Skype for Business Basic 2019 111 | Skype for Business Basic 2016 112 | Skype for Business 2016 113 | Skype for Business 2016 - ボリューム ライセンス 114 | Skype for Business 2016 115 | Office Standard 2019 116 | Office Standard 2019 - ボリューム ライセンス 117 | Office Standard 2021 118 | Office LTSC Standard 2021 - ボリューム ライセンス 119 | Office LTSC Standard 2024 - ボリューム ライセンス 120 | 121 | Office LTSC Standard 2021 (SPLA) - ボリューム ライセンス 122 | Office Standard 2016 123 | Office Standard 2016 - ボリューム ライセンス 124 | Visio Professional 2019 125 | Visio Professional 2019 - ボリューム ライセンス 126 | Visio Professional 2021 127 | Visio LTSC Professional 2021 - ボリューム ライセンス 128 | Visio Professional 2024 129 | Visio LTSC Professional 2024 - ボリューム ライセンス 130 | Visio Professional 2016 131 | Visio Professional 2016 - ボリューム ライセンス 132 | Visio Professional 2016 - ボリューム ライセンス 133 | Visio Standard 2019 134 | Visio Standard 2019 - ボリューム ライセンス 135 | Visio Standard 2021 136 | Visio LTSC Standard 2021 - ボリューム ライセンス 137 | Visio Standard 2024 138 | Visio LTSC Standard 2024 - ボリューム ライセンス 139 | Visio Standard 2016 140 | Visio Standard 2016 - ボリューム ライセンス 141 | Visio Standard 2016 - ボリューム ライセンス 142 | Word 2019 143 | Word 2019 - ボリューム ライセンス 144 | Word 2021 145 | Word LTSC - ボリューム ライセンス 146 | Word 2024 147 | Word LTSC - ボリューム ライセンス 148 | Word 2016 149 | Word 2016 - ボリューム ライセンス 150 | 言語パック 151 | 校正ツール 152 | 153 | -------------------------------------------------------------------------------- /src/OfficeToolPlus/Dictionaries/ProductsName/ko-kr.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | Access 2019 7 | Access 2019 - 볼륨 라이선스 8 | Access 2021 9 | Access LTSC - 볼륨 라이선스 10 | Access 2024 11 | Access LTSC - 볼륨 라이선스 12 | Access 2016 13 | Access Runtime 2019 14 | Access Runtime 2016 15 | Access 2016 - 볼륨 라이선스 16 | Excel 2019 17 | Excel 2019 - 볼륨 라이선스 18 | Excel 2021 19 | Excel LTSC - 볼륨 라이선스 20 | Excel 2024 21 | Excel LTSC - 볼륨 라이선스 22 | Excel 2016 23 | Excel 2016 - 볼륨 라이선스 24 | Office Home 2024 25 | Office Home 및 Business 2019 26 | Office Home 및 Business 2021 27 | Office Home and Business 2024 28 | Office Home 및 Business Premium 29 | Office Home 및 Business 2016 30 | Office Home 및 Student 2019 31 | Office Home 및 Student 2021 32 | Office Home 및 Student 2016 33 | Office Home 및 Student 2016 34 | Office Mondo 2016 35 | Office Mondo 2016 - 볼륨 라이선스 36 | Microsoft 365 Apps Basic 37 | 비즈니스용 Microsoft 365 앱 38 | Microsoft 365 39 | 40 | Microsoft 365 (가족 및 개인) 41 | 엔터프라이즈용 Microsoft 365 앱 42 | Microsoft 365 소규모 비즈니스 Premium 43 | OneNote (Free) 44 | OneNote 2021 45 | OneNote 2016 46 | OneNote 2016 - 볼륨 라이선스 47 | Outlook 2019 48 | Outlook 2019 - 볼륨 라이선스 49 | Outlook 2021 50 | Outlook LTSC - 볼륨 라이선스 51 | Outlook 2024 52 | Outlook LTSC - 볼륨 라이선스 53 | Outlook 2016 54 | Outlook 2016 - 볼륨 라이선스 55 | Office Personal 2019 56 | Office Personal 2021 57 | Office Personal Premium 58 | Office Personal 2016 59 | PowerPoint 2019 60 | PowerPoint 2019 - 볼륨 라이선스 61 | PowerPoint 2021 62 | PowerPoint LTSC - 볼륨 라이선스 63 | PowerPoint 2024 64 | PowerPoint LTSC - 볼륨 라이선스 65 | PowerPoint 2016 66 | PowerPoint 2016 - 볼륨 라이선스 67 | Office Professional 2019 68 | Office Professional 2021 69 | Office Professional Premium 70 | Office Professional 2016 71 | Project Professional 2019 72 | Project Professional 2019 - 볼륨 라이선스 73 | Project Professional 2021 74 | Project Professional 2021 - 볼륨 라이선스 75 | Project Professional 2024 76 | Project Professional 2024 - 볼륨 라이선스 77 | Project Professional 2016 78 | Project Professional 2016 - 볼륨 라이선스 79 | Project Professional 2016 - 볼륨 라이선스 80 | Project Standard 2019 81 | Project Standard 2019 - 볼륨 라이선스 82 | Project Standard 2021 83 | Project Standard 2021 - 볼륨 라이선스 84 | Project Standard 2024 85 | Project Standard 2024 - 볼륨 라이선스 86 | Project Standard 2016 87 | Project Standard 2016 - 볼륨 라이선스 88 | Project Standard 2016 - 볼륨 라이선스 89 | Office Professional Plus 2019 90 | Office Professional Plus 2019 - 볼륨 라이선스 91 | Office Professional Plus 2021 92 | Office LTSC Professional Plus 2021 - 볼륨 라이선스 93 | Office Professional Plus 2024 94 | Office LTSC Professional Plus 2024 - 볼륨 라이선스 95 | 96 | Office LTSC Professional Plus 2021 (SPLA) - 볼륨 라이선스 97 | Office Professional Plus 2016 98 | Office Professional Plus 2016 - 볼륨 라이선스 99 | Publisher 2019 100 | Publisher 2019 - 볼륨 라이선스 101 | Publisher 2021 102 | Publisher LTSC - 볼륨 라이선스 103 | Publisher 2016 104 | Publisher 2016 - 볼륨 라이선스 105 | Business 2019용 Skype 106 | Business 2019용 Skype - 볼륨 라이선스 107 | Business 2021용 Skype 108 | Business LTSC용 Skype - 볼륨 라이선스 109 | Business LTSC용 Skype - 볼륨 라이선스 110 | Business Basic 2019용 Skype 111 | Business Basic 2016용 Skype 112 | Business 2016용 Skype 113 | Business 2016용 Skype - 볼륨 라이선스 114 | Business 2016용 Skype 115 | Office Standard 2019 116 | Office Standard 2019 - 볼륨 라이선스 117 | Office Standard 2021 118 | Office LTSC Standard 2021 - 볼륨 라이선스 119 | Office LTSC Standard 2024 - 볼륨 라이선스 120 | 121 | Office LTSC Standard 2021 (SPLA) - 볼륨 라이선스 122 | Office Standard 2016 123 | Office Standard 2016 - 볼륨 라이선스 124 | Visio Professional 2019 125 | Visio Professional 2019 - 볼륨 라이선스 126 | Visio Professional 2021 127 | Visio LTSC Professional 2021 - 볼륨 라이선스 128 | Visio Professional 2024 129 | Visio LTSC Professional 2024 - 볼륨 라이선스 130 | Visio Professional 2016 131 | Visio Professional 2016 - 볼륨 라이선스 132 | Visio Professional 2016 - 볼륨 라이선스 133 | Visio Standard 2019 134 | Visio Standard 2019 - 볼륨 라이선스 135 | Visio Standard 2021 136 | Visio LTSC Standard 2021 - 볼륨 라이선스 137 | Visio Standard 2024 138 | Visio LTSC Standard 2024 - 볼륨 라이선스 139 | Visio Standard 2016 140 | Visio Standard 2016 - 볼륨 라이선스 141 | Visio Standard 2016 - 볼륨 라이선스 142 | Word 2019 143 | Word 2019 - 볼륨 라이선스 144 | Word 2021 145 | Word LTSC - 볼륨 라이선스 146 | Word 2024 147 | Word LTSC - 볼륨 라이선스 148 | Word 2016 149 | Word 2016 - 볼륨 라이선스 150 | 언어 패키지 151 | 교정 도구 152 | 153 | -------------------------------------------------------------------------------- /src/OfficeToolPlus/Dictionaries/ProductsName/nl-nl.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | Access 2019 7 | Access 2019 - Volume Licentie 8 | Access 2021 9 | Access LTSC - Volume Licentie 10 | Access 2024 11 | Access LTSC - Volume Licentie 12 | Access 2016 13 | Access Runtime 2019 14 | Access Runtime 2016 15 | Access 2016 - Volume Licentie 16 | Excel 2019 17 | Excel 2019 - Volume Licentie 18 | Excel 2021 19 | Excel LTSC - Volume Licentie 20 | Excel 2024 21 | Excel LTSC - Volume Licentie 22 | Excel 2016 23 | Excel 2016 - Volume Licentie 24 | Office Home 2024 25 | Office Home en Business 2019 26 | Office Home en Business 2021 27 | Office Home and Business 2024 28 | Office Home en Business Premium 29 | Office Home en Business 2016 30 | Office Home en Student 2019 31 | Office Home en Student 2021 32 | Office Home en Student 2016 33 | Office Home en Student 2016 34 | Office Mondo 2016 35 | Office Mondo 2016 - Volume Licentie 36 | Microsoft 365 Apps Basic 37 | Microsoft 365 Apps voor business 38 | Microsoft 365 39 | 40 | Microsoft 365 (Family & Personal) 41 | Microsoft 365 Apps voor enterprise 42 | Microsoft 365 Small Business Premium 43 | OneNote (Free) 44 | OneNote 2021 45 | OneNote 2016 46 | OneNote 2016 - Volume Licentie 47 | Outlook 2019 48 | Outlook 2019 - Volume Licentie 49 | Outlook 2021 50 | Outlook LTSC - Volume Licentie 51 | Outlook 2024 52 | Outlook LTSC - Volume Licentie 53 | Outlook 2016 54 | Outlook 2016 - Volume Licentie 55 | Office Personal 2019 56 | Office Personal 2021 57 | Office Personal Premium 58 | Office Personal 2016 59 | PowerPoint 2019 60 | PowerPoint 2019 - Volume Licentie 61 | PowerPoint 2021 62 | PowerPoint LTSC - Volume Licentie 63 | PowerPoint 2024 64 | PowerPoint LTSC - Volume Licentie 65 | PowerPoint 2016 66 | PowerPoint 2016 - Volume Licentie 67 | Office Professional 2019 68 | Office Professional 2021 69 | Office Professional Premium 70 | Office Professional 2016 71 | Project Professional 2019 72 | Project Professional 2019 - Volume Licentie 73 | Project Professional 2021 74 | Project Professional 2021 - Volume Licentie 75 | Project Professional 2024 76 | Project Professional 2024 - Volume Licentie 77 | Project Professional 2016 78 | Project Professional 2016 - Volume Licentie 79 | Project Professional 2016 - Volume Licentie 80 | Project Standaard 2019 81 | Project Standaard 2019 - Volume Licentie 82 | Project Standaard 2021 83 | Project Standaard 2021 - Volume Licentie 84 | Project Standaard 2024 85 | Project Standaard 2024 - Volume Licentie 86 | Project Standaard 2016 87 | Project Standaard 2016 - Volume Licentie 88 | Project Standaard 2016 - Volume Licentie 89 | Office Professional Plus 2019 90 | Office Professional Plus 2019 - Volume Licentie 91 | Office Professional Plus 2021 92 | Office LTSC Professional Plus 2021 - Volume Licentie 93 | Office Professional Plus 2024 94 | Office LTSC Professional Plus 2024 - Volume Licentie 95 | 96 | Office LTSC Professional Plus 2021 (SPLA) - Volume Licentie 97 | Office Professional Plus 2016 98 | Office Professional Plus 2016 - Volume Licentie 99 | Publisher 2019 100 | Publisher 2019 - Volume Licentie 101 | Publisher 2021 102 | Publisher LTSC - Volume Licentie 103 | Publisher 2016 104 | Publisher 2016 - Volume Licentie 105 | Skype voor Business 2019 106 | Skype voor Business 2019 - Volume Licentie 107 | Skype voor Business 2021 108 | Skype voor Business LTSC - Volume Licentie 109 | Skype voor Business LTSC - Volume Licentie 110 | Skype voor Business Basic 2019 111 | Skype voor Business Basic 2016 112 | Skype voor Business 2016 113 | Skype voor Business 2016 - Volume Licentie 114 | Skype voor Business 2016 115 | Office Standaard 2019 116 | Office Standaard 2019 - Volume Licentie 117 | Office Standaard 2021 118 | Office LTSC Standaard 2021 - Volume Licentie 119 | Office LTSC Standaard 2024 - Volume Licentie 120 | 121 | Office LTSC Standaard 2021 (SPLA) - Volume Licentie 122 | Office Standaard 2016 123 | Office Standaard 2016 - Volume Licentie 124 | Visio Professional 2019 125 | Visio Professional 2019 - Volume Licentie 126 | Visio Professional 2021 127 | Visio LTSC Professional 2021 - Volume Licentie 128 | Visio Professional 2024 129 | Visio LTSC Professional 2024 - Volume Licentie 130 | Visio Professional 2016 131 | Visio Professional 2016 - Volume Licentie 132 | Visio Professional 2016 - Volume Licentie 133 | Visio Standaard 2019 134 | Visio Standaard 2019 - Volume Licentie 135 | Visio Standaard 2021 136 | Visio LTSC Standaard 2021 - Volume Licentie 137 | Visio Standaard 2024 138 | Visio LTSC Standaard 2024 - Volume Licentie 139 | Visio Standaard 2016 140 | Visio Standaard 2016 - Volume Licentie 141 | Visio Standaard 2016 - Volume Licentie 142 | Word 2019 143 | Word 2019 - Volume Licentie 144 | Word 2021 145 | Word LTSC - Volume Licentie 146 | Word 2024 147 | Word LTSC - Volume Licentie 148 | Word 2016 149 | Word 2016 - Volume Licentie 150 | Language package 151 | Proofing tool 152 | 153 | -------------------------------------------------------------------------------- /src/OfficeToolPlus/Dictionaries/ProductsName/tr-tr.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | Access 2019 7 | Access 2019 - Toplu Lisans 8 | Access 2021 9 | Access LTSC - Toplu Lisans 10 | Access 2024 11 | Access LTSC - Toplu Lisans 12 | Access 2016 13 | Access Runtime 2019 14 | Access Runtime 2016 15 | Access 2016 - Toplu Lisans 16 | Excel 2019 17 | Excel 2019 - Toplu Lisans 18 | Excel 2021 19 | Excel LTSC - Toplu Lisans 20 | Excel 2024 21 | Excel LTSC - Toplu Lisans 22 | Excel 2016 23 | Excel 2016 - Toplu Lisans 24 | Office Home 2024 25 | Office Home and Business 2019 26 | Office Home and Business 2021 27 | Office Home and Business 2024 28 | Office Home and Business Premium 29 | Office Home and Business 2016 30 | Office Home and Student 2019 31 | Office Home and Student 2021 32 | Office Home and Student 2016 33 | Office Home and Student 2016 34 | Office Mondo 2016 35 | Office Mondo 2016 - Toplu Lisans 36 | Microsoft 365 Apps Basic 37 | Microsoft 365 Apps for business 38 | Microsoft 365 39 | 40 | Microsoft 365 (Aile & Kişisel) 41 | Microsoft 365 Apps for enterprise 42 | Microsoft 365 Small Business Premium 43 | OneNote (Free) 44 | OneNote 2021 45 | OneNote 2016 46 | OneNote 2016 - Toplu Lisans 47 | Outlook 2019 48 | Outlook 2019 - Toplu Lisans 49 | Outlook 2021 50 | Outlook LTSC - Toplu Lisans 51 | Outlook 2024 52 | Outlook LTSC - Toplu Lisans 53 | Outlook 2016 54 | Outlook 2016 - Toplu Lisans 55 | Office Personal 2019 56 | Office Personal 2021 57 | Office Personal Premium 58 | Office Personal 2016 59 | PowerPoint 2019 60 | PowerPoint 2019 - Toplu Lisans 61 | PowerPoint 2021 62 | PowerPoint LTSC - Toplu Lisans 63 | PowerPoint 2024 64 | PowerPoint LTSC - Toplu Lisans 65 | PowerPoint 2016 66 | PowerPoint 2016 - Toplu Lisans 67 | Office Professional 2019 68 | Office Professional 2021 69 | Office Professional Premium 70 | Office Professional 2016 71 | Project Professional 2019 72 | Project Professional 2019 - Toplu Lisans 73 | Project Professional 2021 74 | Project Professional 2021 - Toplu Lisans 75 | Project Professional 2024 76 | Project Professional 2024 - Toplu Lisans 77 | Project Professional 2016 78 | Project Professional 2016 - Toplu Lisans 79 | Project Professional 2016 - Toplu Lisans 80 | Project Standard 2019 81 | Project Standard 2019 - Toplu Lisans 82 | Project Standard 2021 83 | Project Standard 2021 - Toplu Lisans 84 | Project Standard 2024 85 | Project Standard 2024 - Toplu Lisans 86 | Project Standard 2016 87 | Project Standard 2016 - Toplu Lisans 88 | Project Standard 2016 - Toplu Lisans 89 | Office Professional Plus 2019 90 | Office Professional Plus 2019 - Toplu Lisans 91 | Office Professional Plus 2021 92 | Office LTSC Professional Plus 2021 - Toplu Lisans 93 | Office Professional Plus 2024 94 | Office LTSC Professional Plus 2024 - Toplu Lisans 95 | 96 | Office LTSC Professional Plus 2021 (SPLA) - Toplu Lisans 97 | Office Professional Plus 2016 98 | Office Professional Plus 2016 - Toplu Lisans 99 | Publisher 2019 100 | Publisher 2019 - Toplu Lisans 101 | Publisher 2021 102 | Publisher LTSC - Toplu Lisans 103 | Publisher 2016 104 | Publisher 2016 - Toplu Lisans 105 | Skype for Business 2019 106 | Skype for Business 2019 - Toplu Lisans 107 | Skype for Business 2021 108 | Skype for Business LTSC - Toplu Lisans 109 | Skype for Business LTSC - Toplu Lisans 110 | Skype for Business Basic 2019 111 | Skype for Business Basic 2016 112 | Skype for Business 2016 113 | Skype for Business 2016 - Toplu Lisans 114 | Skype for Business 2016 115 | Office Standard 2019 116 | Office Standard 2019 - Toplu Lisans 117 | Office Standard 2021 118 | Office LTSC Standard 2021 - Toplu Lisans 119 | Office LTSC Standard 2024 - Toplu Lisans 120 | 121 | Office LTSC Standard 2021 (SPLA) - Toplu Lisans 122 | Office Standard 2016 123 | Office Standard 2016 - Toplu Lisans 124 | Visio Professional 2019 125 | Visio Professional 2019 - Toplu Lisans 126 | Visio Professional 2021 127 | Visio LTSC Professional 2021 - Toplu Lisans 128 | Visio Professional 2024 129 | Visio LTSC Professional 2024 - Toplu Lisans 130 | Visio Professional 2016 131 | Visio Professional 2016 - Toplu Lisans 132 | Visio Professional 2016 - Toplu Lisans 133 | Visio Standard 2019 134 | Visio Standard 2019 - Toplu Lisans 135 | Visio Standard 2021 136 | Visio LTSC Standard 2021 - Toplu Lisans 137 | Visio Standard 2024 138 | Visio LTSC Standard 2024 - Toplu Lisans 139 | Visio Standard 2016 140 | Visio Standard 2016 - Toplu Lisans 141 | Visio Standard 2016 - Toplu Lisans 142 | Word 2019 143 | Word 2019 - Toplu Lisans 144 | Word 2021 145 | Word LTSC - Toplu Lisans 146 | Word 2024 147 | Word LTSC - Toplu Lisans 148 | Word 2016 149 | Word 2016 - Toplu Lisans 150 | Dil Paketi 151 | Yazım Denetleme Aracı 152 | 153 | -------------------------------------------------------------------------------- /src/OfficeToolPlus/Dictionaries/ProductsName/zh-cn.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | Access 2019 7 | Access 2019 - 批量许可证 8 | Access 2021 9 | Access LTSC - 批量许可证 10 | Access 2024 11 | Access LTSC - 批量许可证 12 | Access 2016 13 | Access Runtime 2019 14 | Access Runtime 2016 15 | Access 2016 - 批量许可证 16 | Excel 2019 17 | Excel 2019 - 批量许可证 18 | Excel 2021 19 | Excel LTSC - 批量许可证 20 | Excel 2024 21 | Excel LTSC - 批量许可证 22 | Excel 2016 23 | Excel 2016 - 批量许可证 24 | Office 家庭版 2024 25 | Office 小型企业版 2019 26 | Office 小型企业版 2021 27 | Office 小型企业版 2024 28 | Office Home and Business Premium 29 | Office 小型企业版 2016 30 | Office 家庭和学生版 2019 31 | Office 家庭和学生版 2021 32 | Office 家庭和学生版 2016 33 | Office 家庭和学生版 2016 34 | Office Mondo 2016 35 | Office Mondo 2016 - 批量许可证 36 | Microsoft 365 应用基础版 37 | Microsoft 365 应用商业版 38 | Microsoft 365 39 | 40 | Microsoft 365 (家庭和个人版) 41 | Microsoft 365 应用企业版 42 | Microsoft 365 小型企业高级版 43 | OneNote (免费版) 44 | OneNote 2021 45 | OneNote 2016 46 | OneNote 2016 - 批量许可证 47 | Outlook 2019 48 | Outlook 2019 - 批量许可证 49 | Outlook 2021 50 | Outlook LTSC - 批量许可证 51 | Outlook 2024 52 | Outlook LTSC - 批量许可证 53 | Outlook 2016 54 | Outlook 2016 - 批量许可证 55 | Office 个人版 2019 56 | Office 个人版 2021 57 | Office Personal Premium 58 | Office 个人版 2016 59 | PowerPoint 2019 60 | PowerPoint 2019 - 批量许可证 61 | PowerPoint 2021 62 | PowerPoint LTSC - 批量许可证 63 | PowerPoint 2024 64 | PowerPoint LTSC - 批量许可证 65 | PowerPoint 2016 66 | PowerPoint 2016 - 批量许可证 67 | Office 专业版 2019 68 | Office 专业版 2021 69 | Office Professional Premium 70 | Office 专业版 2016 71 | Project 专业版 2019 72 | Project 专业版 2019 - 批量许可证 73 | Project 专业版 2021 74 | Project 专业版 2021 - 批量许可证 75 | Project 专业版 2024 76 | Project 专业版 2024 - 批量许可证 77 | Project 专业版 2016 78 | Project 专业版 2016 - 批量许可证 79 | Project 专业版 2016 - 批量许可证 80 | Project 标准版 2019 81 | Project 标准版 2019 - 批量许可证 82 | Project 标准版 2021 83 | Project 标准版 2021 - 批量许可证 84 | Project 标准版 2024 85 | Project 标准版 2024 - 批量许可证 86 | Project 标准版 2016 87 | Project 标准版 2016 - 批量许可证 88 | Project 标准版 2016 - 批量许可证 89 | Office 专业增强版 2019 90 | Office 专业增强版 2019 - 批量许可证 91 | Office 专业增强版 2021 92 | Office LTSC 专业增强版 2021 - 批量许可证 93 | Office 专业增强版 2024 94 | Office LTSC 专业增强版 2024 - 批量许可证 95 | 96 | Office LTSC 专业增强版 2021 (SPLA) - 批量许可证 97 | Office 专业增强版 2016 98 | Office 专业增强版 2016 - 批量许可证 99 | Publisher 2019 100 | Publisher 2019 - 批量许可证 101 | Publisher 2021 102 | Publisher LTSC - 批量许可证 103 | Publisher 2016 104 | Publisher 2016 - 批量许可证 105 | Skype for Business 2019 106 | Skype for Business 2019 - 批量许可证 107 | Skype for Business 2021 108 | Skype for Business LTSC - 批量许可证 109 | Skype for Business LTSC - 批量许可证 110 | Skype for Business Basic 2019 111 | Skype for Business Basic 2016 112 | Skype for Business 2016 113 | Skype for Business 2016 - 批量许可证 114 | Skype for Business 2016 115 | Office 标准版 2019 116 | Office 标准版 2019 - 批量许可证 117 | Office 标准版 2021 118 | Office LTSC 标准版 2021 - 批量许可证 119 | Office LTSC 标准版 2024 - 批量许可证 120 | 121 | Office LTSC 标准版 2021 (SPLA) - 批量许可证 122 | Office 标准版 2016 123 | Office 标准版 2016 - 批量许可证 124 | Visio 专业版 2019 125 | Visio 专业版 2019 - 批量许可证 126 | Visio 专业版 2021 127 | Visio LTSC 专业版 2021 - 批量许可证 128 | Visio 专业版 2024 129 | Visio LTSC 专业版 2024 - 批量许可证 130 | Visio 专业版 2016 131 | Visio 专业版 2016 - 批量许可证 132 | Visio 专业版 2016 - 批量许可证 133 | Visio 标准版 2019 134 | Visio 标准版 2019 - 批量许可证 135 | Visio 标准版 2021 136 | Visio LTSC 标准版 2021 - 批量许可证 137 | Visio 标准版 2024 138 | Visio LTSC 标准版 2024 - 批量许可证 139 | Visio 标准版 2016 140 | Visio 标准版 2016 - 批量许可证 141 | Visio 标准版 2016 - 批量许可证 142 | Word 2019 143 | Word 2019 - 批量许可证 144 | Word 2021 145 | Word LTSC - 批量许可证 146 | Word 2024 147 | Word LTSC - 批量许可证 148 | Word 2016 149 | Word 2016 - 批量许可证 150 | 语言包 151 | 校对工具 152 | 153 | -------------------------------------------------------------------------------- /src/OfficeToolPlus/Dictionaries/ProductsName/zh-tw.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | Access 2019 7 | Access 2019 (大量授權) 8 | Access 2021 9 | Access LTSC (大量授權) 10 | Access 2024 11 | Access LTSC (大量授權) 12 | Access 2016 13 | Access Runtime 2019 14 | Access Runtime 2016 15 | Access 2016 (大量授權) 16 | Excel 2019 17 | Excel 2019 (大量授權) 18 | Excel 2021 19 | Excel LTSC (大量授權) 20 | Excel 2024 21 | Excel LTSC (大量授權) 22 | Excel 2016 23 | Excel 2016 (大量授權) 24 | Office 家用版 2024 25 | Office 家用及中小企業版 2019 26 | Office 家用及中小企業版 2021 27 | Office 家用及中小企業版 2024 28 | Office Home and Business Premium 29 | Office 家用及中小企業版 2016 30 | Office 家用版 2019 31 | Office 家用版 2021 32 | Office 家用版 2016 33 | Office 家用版 2016 34 | Office Mondo 2016 35 | Office Mondo 2016 (大量授權) 36 | Microsoft 365 Apps Basic 37 | Microsoft 365 Apps 商務版 38 | Microsoft 365 (EduCloud) 39 | 40 | Microsoft 365 (家用版和個人版) 41 | Microsoft 365 Apps 企業版 42 | Microsoft 365 小型企業進階版 43 | OneNote (Free) 44 | OneNote 2021 45 | OneNote 2016 46 | OneNote 2016 (大量授權) 47 | Outlook 2019 48 | Outlook 2019 (大量授權) 49 | Outlook 2021 50 | Outlook LTSC (大量授權) 51 | Outlook 2024 52 | Outlook LTSC (大量授權) 53 | Outlook 2016 54 | Outlook 2016 (大量授權) 55 | Office 個人版 2019 56 | Office 個人版 2021 57 | Office Personal Premium 58 | Office 個人版 2016 59 | PowerPoint 2019 60 | PowerPoint 2019 (大量授權) 61 | PowerPoint 2021 62 | PowerPoint LTSC (大量授權) 63 | PowerPoint 2024 64 | PowerPoint LTSC (大量授權) 65 | PowerPoint 2016 66 | PowerPoint 2016 (大量授權) 67 | Office 專業版 2019 68 | Office 專業版 2021 69 | Office Professional Premium 70 | Office 專業版 2016 71 | Project 專業版 2019 72 | Project 專業版 2019 (大量授權) 73 | Project 專業版 2021 74 | Project 專業版 2021 (大量授權) 75 | Project 專業版 2024 76 | Project 專業版 2024 (大量授權) 77 | Project 專業版 2016 78 | Project 專業版 2016 (大量授權) 79 | Project 專業版 2016 (大量授權) 80 | Project 標準版 2019 81 | Project 標準版 2019 (大量授權) 82 | Project 標準版 2021 83 | Project 標準版 2021 (大量授權) 84 | Project 標準版 2024 85 | Project 標準版 2024 (大量授權) 86 | Project 標準版 2016 87 | Project 標準版 2016 (大量授權) 88 | Project 標準版 2016 (大量授權) 89 | Office 專業增強版 2019 90 | Office 專業增強版 2019 (大量授權) 91 | Office 專業增強版 2021 92 | Office LTSC 專業增強版 2021 (大量授權) 93 | Office 專業增強版 2024 94 | Office LTSC 專業增強版 2024 (大量授權) 95 | 96 | Office LTSC 專業增強版 2021 (SPLA) (大量授權) 97 | Office 專業增強版 2016 98 | Office 專業增強版 2016 (大量授權) 99 | Publisher 2019 100 | Publisher 2019 (大量授權) 101 | Publisher 2021 102 | Publisher LTSC (大量授權) 103 | Publisher 2016 104 | Publisher 2016 (大量授權) 105 | 商務用 Skype 2019 106 | 商務用 Skype 2019 (大量授權) 107 | 商務用 Skype 2021 108 | 商務用 Skype LTSC (大量授權) 109 | 商務用 Skype LTSC (大量授權) 110 | 商務用 Skype 基本版 2019 111 | 商務用 Skype 基本版 2016 112 | 商務用 Skype 2016 113 | 商務用 Skype 2016 (大量授權) 114 | 商務用 Skype 2016 115 | Office 標準版 2019 116 | Office 標準版 2019 (大量授權) 117 | Office 標準版 2021 118 | Office LTSC 標準版 2021 (大量授權) 119 | Office LTSC 標準版 2024 (大量授權) 120 | 121 | Office LTSC 標準版 2021 (SPLA) (大量授權) 122 | Office 標準版 2016 123 | Office 標準版 2016 (大量授權) 124 | Visio 專業版 2019 125 | Visio 專業版 2019 (大量授權) 126 | Visio 專業版 2021 127 | Visio LTSC 專業版 2021 (大量授權) 128 | Visio 專業版 2024 129 | Visio LTSC 專業版 2024 (大量授權) 130 | Visio 專業版 2016 131 | Visio 專業版 2016 (大量授權) 132 | Visio 專業版 2016 (大量授權) 133 | Visio 標準版 2019 134 | Visio 標準版 2019 (大量授權) 135 | Visio 標準版 2021 136 | Visio LTSC 標準版 2021 (大量授權) 137 | Visio 標準版 2024 138 | Visio LTSC 標準版 2024 (大量授權) 139 | Visio 標準版 2016 140 | Visio 標準版 2016 (大量授權) 141 | Visio 標準版 2016 (大量授權) 142 | Word 2019 143 | Word 2019 (大量授權) 144 | Word 2021 145 | Word LTSC (大量授權) 146 | Word 2024 147 | Word LTSC (大量授權) 148 | Word 2016 149 | Word 2016 (大量授權) 150 | 語言套件 151 | 校訂工具 152 | 153 | -------------------------------------------------------------------------------- /src/OfficeToolPlus/Dictionaries/README.md: -------------------------------------------------------------------------------- 1 | # Office Tool Plus Translation Guidelines 2 | 3 | XAML files are localized files used by Office Tool Plus. We recommend that you use VS Code or another editor for translation. 4 | 5 | > If you have any questions about translation, you can open an issue for help. 6 | 7 | ## Special strings 8 | 9 | Don't change any strings or words like this: 10 | 11 | ```xml 12 | 13 | {0} 14 | {1} 15 | 16 | ``` 17 | 18 | This remarks or escape characters should be kept as original. 19 | 20 | ### Proper nouns 21 | 22 | Products name and channels name is named by Microsoft, if possible, we should keep it same as Microsoft used. 23 | 24 | Products and channels name can be found on Microsoft docs or Office applications. 25 | 26 | - [Office Products name (partial)](https://docs.microsoft.com/en-us/office365/troubleshoot/installation/product-ids-supported-office-deployment-click-to-run) 27 | - [Office Channels name](https://docs.microsoft.com/en-us/deployoffice/overview-update-channels) 28 | - [Office customization Tool](https://go.microsoft.com/fwlink/?linkid=854077) 29 | 30 | > Note: Some text may be translated by machine, and you will need to decide how to translate these proper names. 31 | 32 | ### File formats name 33 | 34 | File extensions shoule be same as Windows or Office displayed. 35 | 36 | To get the file formats information, you can open Office applications, create a blank document. Press F12 to save as, then you will see a window which contains all file formats that you want. 37 | 38 | > Also you can search it on Google. 39 | 40 | ### Programs name and processes name 41 | 42 | Programs name can be found on Microsoft's website. You can try to search it on Google, here is some example links: 43 | 44 | - [Office Deployment Tool](https://aka.ms/ODT) 45 | 46 | Some processes name should be same as Windows displayed. 47 | 48 | - Software Protection: you can find it on *Start -> Windows Administrative Tools -> Services*. 49 | - Windows Management Instrumentation: you can find it on *Start -> Windows Administrative Tools -> Services*. 50 | 51 | ## How to load and test new translation 52 | 53 | On the latest version of Office Tool Plus, press Ctrl + Shift + P to open command box. Enter command `/loaddict `, such as `/loaddict "D:\Test\en-us.xaml"`. 54 | 55 | To remove the loaded resource, use command `/cldict`. 56 | -------------------------------------------------------------------------------- /src/scripts/Invoke-Commands.ps1: -------------------------------------------------------------------------------- 1 | # Set commands like this: 2 | # $Commands = @("deploy /add O365ProPlusRetail_en-us", "ospp /inslicid MondoVolume /sethst 192.168.1.1 /act") 3 | # The commands will be executed in sequence after downloading Office Tool Plus. 4 | 5 | # Enable TLSv1.2 for compatibility with older clients 6 | [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.SecurityProtocolType]::Tls12 7 | # Do not display progress for WebRequest. 8 | $ProgressPreference = 'SilentlyContinue' 9 | $Host.UI.RawUI.WindowTitle = "Office Tool Plus | Commands" 10 | 11 | # Localization 12 | $CurrentLang = (Get-WinUserLanguageList)[0].LanguageTag.Replace("-", "_") 13 | $SupportedLanguages = @("en_US", "zh_Hans_CN") 14 | # Fallback to default language if not supported. 15 | if ($SupportedLanguages -notcontains $CurrentLang) { 16 | $CurrentLang = $SupportedLanguages[0].Replace("-", "_") 17 | } 18 | $AllLanguages = @{ 19 | "OSInfo" = [PSCustomObject]@{ 20 | en_US = "OS info:" 21 | zh_Hans_CN = "系统信息:" 22 | } 23 | "CommandsWillBeExec" = [PSCustomObject]@{ 24 | en_US = " The following commands will be executed in sequence:" 25 | zh_Hans_CN = " 将会依次执行以下命令:" 26 | } 27 | "Downloading" = [PSCustomObject]@{ 28 | en_US = " Downloading Office Tool Plus, please wait." 29 | zh_Hans_CN = " 正在下载 Office Tool Plus,请稍等..." 30 | } 31 | "Extracting" = [PSCustomObject]@{ 32 | en_US = " Extracting files, please wait." 33 | zh_Hans_CN = " 正在解压文件,请稍等..." 34 | } 35 | "ErrorDownloading" = [PSCustomObject]@{ 36 | en_US = " An error occurred while downloading the file." 37 | zh_Hans_CN = " 下载文件时发生错误。" 38 | } 39 | "RetryDownload" = [PSCustomObject]@{ 40 | en_US = " Do you want to retry? (Y/N)" 41 | zh_Hans_CN = " 你想重试吗?(Y/N)" 42 | } 43 | "DownloadSuccess" = [PSCustomObject]@{ 44 | en_US = " Office Tool Plus was extracted to {0}" 45 | zh_Hans_CN = " Office Tool Plus 已保存到 {0}" 46 | } 47 | "PressToContinue" = [PSCustomObject]@{ 48 | en_US = " Press Enter to continue." 49 | zh_Hans_CN = " 请按下回车键以继续" 50 | } 51 | "PressToExit" = [PSCustomObject]@{ 52 | en_US = "Press Enter to exit." 53 | zh_Hans_CN = "按下回车键以退出" 54 | } 55 | } 56 | 57 | function Get-LString { 58 | param([string]$Key) 59 | 60 | return $AllLanguages[$Key].$CurrentLang 61 | } 62 | 63 | function Get-OTP { 64 | param([string]$DownloadURL, [string]$SavePath) 65 | 66 | $FileName = "$env:TEMP\Office Tool Plus.zip" 67 | $DownloadSuccess = $false 68 | do { 69 | try { 70 | Get-LString "Downloading" 71 | Invoke-WebRequest -Uri $DownloadURL -UseBasicParsing -OutFile $FileName -ErrorAction Stop 72 | Get-LString "Extracting" 73 | Expand-Archive -LiteralPath $FileName -DestinationPath $SavePath -Force 74 | $DownloadSuccess = $true 75 | } 76 | catch { 77 | Get-LString "ErrorDownloading" 78 | $UserChoice = Read-Host $(Get-LString "RetryDownload") 79 | if ($UserChoice -ne "Y") { 80 | Get-LString "RedownloadTip" 81 | Read-Host 82 | Exit 83 | } 84 | } 85 | finally { 86 | if (Test-Path $FileName) { 87 | $item = Get-Item -LiteralPath $FileName 88 | $item.Delete() 89 | } 90 | } 91 | } while (-not $DownloadSuccess) 92 | } 93 | 94 | function Get-RuntimeVersion { 95 | try { 96 | $DotnetInfo = dotnet --list-runtimes | Select-String -Pattern "Microsoft.WindowsDesktop.App 8" 97 | $IsX86Version = $DotnetInfo | Select-String -Pattern "(x86)" 98 | # If x86 version of runtime is installed on system, ignore it. Because we will download x64 version of OTP by default. 99 | if ($null -ne $IsX86Version) { 100 | return $false 101 | } 102 | if ($null -ne $DotnetInfo) { 103 | return $true 104 | } 105 | } 106 | catch { 107 | return $false 108 | } 109 | return $false 110 | } 111 | 112 | # Collect system information 113 | $OsVersion = [System.Environment]::OSVersion.VersionString 114 | $Arch = (Get-CimInstance Win32_OperatingSystem).OSArchitecture 115 | $Arch = if ($Arch -Match "ARM64") { "ARM64" } elseif ($Arch -Match "64") { "x64" } else { "x86" } 116 | 117 | Clear-Host 118 | Write-Host "=========================== Office Tool Plus ===========================" 119 | Write-Host 120 | Write-Host " $(Get-LString "OSInfo") $OsVersion $Arch" 121 | Write-Host 122 | if (Get-RuntimeVersion -eq $true) { 123 | $Type = "normal" 124 | } 125 | else { 126 | $Type = "runtime" 127 | } 128 | 129 | Write-Host "$(Get-LString "CommandsWillBeExec")" 130 | foreach ($Command in $Commands) { 131 | Write-Host " $Command" 132 | } 133 | 134 | Write-Host 135 | Write-Host $(Get-LString -Key "PressToContinue") -NoNewline 136 | Read-Host 137 | 138 | # Download Office Tool Plus 139 | $TempFolder = "$env:TEMP\Office Tool Plus" 140 | Get-OTP -DownloadURL "https://www.officetool.plus/redirect/download.php?type=$Type&arch=$Arch" -SavePath $TempFolder 141 | 142 | # Run commands 143 | foreach ($Command in $Commands) { 144 | Clear-Host 145 | Start-Process -FilePath "$TempFolder\Office Tool\Office Tool Plus.Console.exe" -NoNewWindow -ArgumentList $Command -Wait -WorkingDirectory "$TempFolder\Office Tool" 146 | } 147 | 148 | # Clean up 149 | Remove-Item "$TempFolder\*" -Recurse -Force 150 | Remove-Item "$TempFolder" -Force 151 | 152 | Write-Host 153 | Write-Host "$(Get-LString -Key "PressToExit")" 154 | Read-Host 155 | Exit 156 | --------------------------------------------------------------------------------