Seite 1 von 1
Microsoft 365 Access Runtime
Verfasst: 02 Mär 2026, 15:07
von keback
Hallo,
wir haben in der Vergangenheit Microsoft Access 2010 Runtime per OPSI auf unsere Clients verteilt.
Nun möchten wir gerne auf die aktuelle Version names Microsoft Access 365 Runtime umsteigen.
Allerdings haben wir bis jetzt nur einen Online-Installer (
https://support.microsoft.com/en-us/off ... cbe3ea09c9) gefunden.
Da einige Clients keinen Internetzugang haben, ist das etwas problematisch.
Hat jemand hier evtl. schon das gleiche Problem gehabt und eine Lösung gefunden?
Vielen Dank!
Kevin
Re: Microsoft 365 Access Runtime
Verfasst: 03 Mär 2026, 07:36
von Andi_089
Guten Morgen,
ich geb zu, mit der Access Runtime haben wir nix zu tun, aber ich kann dir mal zeigen, wie ich bei uns das Office 365 ausrolle.
Das Office hat ja auch eigentlich nur ne Setup.exe, welche sich dann den Rest nachlädt.
Hier hat man die Möglichkeit mittels einer XML alles zu Konfigurieren und diese dann beim Aufruf der Setup.exe mit anzugeben.
(ich kopier die Setup.exe vorab einmal nach C.\Temp da es unter dem Netzlaufwerk manchmal zu Problemen gekommen ist)
Code: Alles auswählen
[WinBatch_install_1]
"c:\temp\office\setup.exe" /configure "c:\temp\office\Install-O365-X64.xml"
und die XML sieht dann bei uns so aus (anonymisiert)
Code: Alles auswählen
<Configuration ID="XXX">
<Info Description="Office-365 inkl. Project und Visio" />
<Add OfficeClientEdition="64" Channel="MonthlyEnterprise" SourcePath=".\PFAD\ZU\DEN\INSTALLATIONSDATEN" AllowCdnFallback="TRUE">
<Product ID="O365ProPlusRetail">
<Language ID="de-de" />
<ExcludeApp ID="Groove" />
<ExcludeApp ID="Lync" />
<ExcludeApp ID="Bing" />
<ExcludeApp ID="Bing" />
<ExcludeApp ID="Bing" />
</Product>
<Product ID="ProjectProRetail">
<Language ID="de-de" />
<ExcludeApp ID="Groove" />
<ExcludeApp ID="Lync" />
<ExcludeApp ID="Bing" />
<ExcludeApp ID="Bing" />
<ExcludeApp ID="Bing" />
</Product>
<Product ID="VisioProRetail">
<Language ID="de-de" />
<ExcludeApp ID="Groove" />
<ExcludeApp ID="Lync" />
<ExcludeApp ID="Bing" />
<ExcludeApp ID="Bing" />
<ExcludeApp ID="Bing" />
</Product>
</Add>
<Property Name="SharedComputerLicensing" Value="0" />
<Property Name="FORCEAPPSHUTDOWN" Value="TRUE" />
<Property Name="DeviceBasedLicensing" Value="0" />
<Property Name="SCLCacheOverride" Value="0" />
<Updates Enabled="TRUE" UpdatePath="\\UNC\PFAD\ZU\DEN\UPDATEDATEIEN" />
<RemoveMSI />
<AppSettings>
<Setup Name="Company" Value="MUSTERSTADT" />
<User Key="software\microsoft\shared tools\proofing tools\spelling" Name="germanpostreform" Value="1" Type="REG_DWORD" App="office16" Id="L_UseGermanpostreformruleswhenrunningspellcheck" />
<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\outlook\options\calendar" Name="workday" Value="254" Type="REG_DWORD" App="outlk16" Id="L_Workweek" />
<User Key="software\microsoft\office\16.0\outlook\options\calendar" Name="firstwoy" Value="2" Type="REG_DWORD" App="outlk16" Id="L_Firstweekofyear" />
<User Key="software\microsoft\office\16.0\outlook\options\calendar" Name="weeknum" Value="1" Type="REG_DWORD" App="outlk16" Id="L_Calendarweeknumbers" />
<User Key="software\microsoft\office\16.0\outlook\options\mail" Name="junkmailpermdelete" Value="1" Type="REG_DWORD" App="outlk16" Id="L_PermanentlydeleteJunkEmail" />
<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>
Damit rennt die Installation dann komplett offline
Re: Microsoft 365 Access Runtime
Verfasst: 03 Mär 2026, 16:08
von JakobCGN