microsoft_office
Dies ist eine alte Version des Dokuments!
Inhaltsverzeichnis
Microsoft Office
Installation
-
- Erstellen/Bearbeiten einer Konfigurationsdatei (Import/Export)
-
- Installieren von MS Office mithilfe von dem ODT und dem Skript (siehe unten)
- Smart Activation Script (oft als cracken bezeichnet): https://github.com/kkkgo/KMS_VL_ALL (erfordert Office Installation mit Volume License)
Installationsskript
https://github.com/Masterflitzer/ms-activation.git
neues PowerShell Skript:
- office-install.ps1
Param ( [Parameter(Mandatory=$false,Position=0)] [string] $config = $null ) $ErrorActionPreference = "Stop" if ([string]::IsNullOrEmpty($config)) {$config = Read-Host "Enter filename of XML configuration (full path or relativ to ~/Downloads/)"} if (!($config.Contains('/') -or $config.Contains('\'))) {$config = "$_home/downloads/" + $config} $_url = "https://download.microsoft.com/download/2/7/A/27AF1BE6-DD20-4CB4-B154-EBAB8A7D4A7E/officedeploymenttool_14131-20278.exe" $_home = "$home".Replace('\', '/').tolower() $_dir = "$_home/downloads/ms-office/" New-Item -ItemType Directory "$_dir" | Out-Null Invoke-WebRequest -Uri "$_url" -OutFile "$_dir/odt.exe" Start-Process "$_dir/odt.exe" "/quiet /passive /extract:$_dir" -Wait Remove-Item "$_dir/configuration-office*.xml" -Force & "$_dir/setup.exe" "/download $config" & "$_dir/setup.exe" "/configure $config"
altes CMD Skript:
- office-install.cmd
@echo off prompt $g cd %~dp0 echo Office Deployment Tool: https://microsoft.com/download/details.aspx?id=49117 echo If you don't have a configuration file visit: https://config.office.com/ echo. set /p Configuration=Configuration File (without .xml file extension): @echo on .\setup.exe /download .\%Configuration%.xml .\setup.exe /configure .\%Configuration%.xml pause
Konfigurationsdatei für Microsoft 365 Apps for enterprise (z.B. für Anmeldung mit Schulkonto)
- configuration-365.xml
<Configuration ID="2e8481e1-a1bd-467c-9900-172bd8d30988"> <Add OfficeClientEdition="64" Channel="Current" MigrateArch="TRUE"> <Product ID="O365ProPlusRetail"> <Language ID="MatchOS" /> <Language ID="en-us" /> <ExcludeApp ID="Groove" /> <ExcludeApp ID="Lync" /> <ExcludeApp ID="OneDrive" /> <ExcludeApp ID="Bing" /> </Product> <Product ID="LanguagePack"> <Language ID="MatchOS" /> <Language ID="en-us" /> <ExcludeApp ID="Bing" /> </Product> <Product ID="ProofingTools"> <Language ID="en-us" /> </Product> </Add> <Property Name="SharedComputerLicensing" Value="0" /> <Property Name="SCLCacheOverride" Value="0" /> <Property Name="AUTOACTIVATE" Value="0" /> <Property Name="FORCEAPPSHUTDOWN" Value="TRUE" /> <Property Name="DeviceBasedLicensing" Value="0" /> <Updates Enabled="TRUE" /> <RemoveMSI /> <AppSettings> <User Key="software\microsoft\office\16.0\excel\options" Name="defaultformat" Value="51" Type="REG_DWORD" App="excel16" Id="L_SaveExcelfilesas" /> <User Key="software\microsoft\office\16.0\powerpoint\options" Name="defaultformat" Value="27" Type="REG_DWORD" App="ppt16" Id="L_SavePowerPointfilesas" /> <User Key="software\microsoft\office\16.0\word\options" Name="defaultformat" Value="" Type="REG_SZ" App="word16" Id="L_SaveWordfilesas" /> </AppSettings> <Display Level="Full" AcceptEULA="TRUE" /> </Configuration>
Konfigurationsdatei für Microsoft Office Professional Plus (Volume License)
- configuration-vl.xml
<Configuration ID="a29cfcd1-99bd-4c94-8a6b-58deac8807be"> <Add OfficeClientEdition="64" Channel="PerpetualVL2019"> <Product ID="ProPlus2019Volume" PIDKEY="NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP"> <Language ID="MatchOS" /> <Language ID="en-us" /> <ExcludeApp ID="Groove" /> <ExcludeApp ID="Lync" /> <ExcludeApp ID="OneDrive" /> </Product> <Product ID="LanguagePack"> <Language ID="MatchOS" /> <Language ID="en-us" /> </Product> <Product ID="ProofingTools"> <Language ID="en-us" /> </Product> </Add> <Property Name="SharedComputerLicensing" Value="0" /> <Property Name="SCLCacheOverride" Value="0" /> <Property Name="AUTOACTIVATE" Value="0" /> <Property Name="FORCEAPPSHUTDOWN" Value="TRUE" /> <Property Name="DeviceBasedLicensing" Value="0" /> <Updates Enabled="TRUE" /> <RemoveMSI /> <AppSettings> <User Key="software\microsoft\office\16.0\excel\options" Name="defaultformat" Value="51" Type="REG_DWORD" App="excel16" Id="L_SaveExcelfilesas" /> <User Key="software\microsoft\office\16.0\powerpoint\options" Name="defaultformat" Value="27" Type="REG_DWORD" App="ppt16" Id="L_SavePowerPointfilesas" /> <User Key="software\microsoft\office\16.0\word\options" Name="defaultformat" Value="" Type="REG_SZ" App="word16" Id="L_SaveWordfilesas" /> </AppSettings> <Display Level="Full" AcceptEULA="TRUE" /> </Configuration>
/home/http/wiki/data/attic/microsoft_office.1631493683.txt · Zuletzt geändert: von david
