Für eine Firma ist es wichtig, dass die Mitarbeiter das CI /CD einhalten. Dafür gibt es in den Office Applikationen verschiedene Möglichkeiten die Standard-Vorlagen zu definieren. Eine Sammlung, wie du diese Office Vorlagen pro Applikation mit Intune beziehungsweise SharePoint managen kannst, habe ich dir in diesem Beitrag zusammengestellt.
Table of Contents
Office Standard-Vorlagen mit Intune
Für die Standard-Vorlagen habe ich pro Office Applikation bereits einen Beitrag verfasst. Diese Office Vorlagen verteile ich jeweils mit Intune, die allgemeinen hingegen mit SharePoint.
Program | Anleitung | Template |
---|---|---|
Word | Word Standard-Vorlage mit Intune | Normal.dotm |
Excel | Excel Standard-Vorlage mit Intune | Book.xltx / Sheet.xltx |
PowerPoint | PowerPoint Standard-Vorlage mit Intune | blank.potx |
Outlook | Outlook Standard-Vorlage mit Intune | NormalEmail.dotm + Registry |
Office Vorlage zentral auf SharePoint
Möglicherweise reichen die Standard-Vorlagen bei dir nicht aus. Dazu gibt es die normalen Vorlagen für alle Office Applikationen. Um diese nicht verteilen zu müssen, aber doch zentral verwalten zu können, gibt es ein Feature, welches im SharePoint aktiviert werden kann.
Dadurch ist es möglich zentral Vorlage für zum Beispiel Briefe, Dokumentationen oder Protokolle zu verwalten.
Die Template Library ist eine ganz normale Dokumenten Bibliothek auf dem SharePoint. Speziell ist, dass die Lese-Berechtigung für "Jeder ausser externen Benutzern" darauf vorhanden sein muss.
Nachdem du die Bibliothek mit den entsprechenden Berechtigungen erfasst hast (am besten gleich schon mit ein paar Vorlagen), kannst du das nachstehende PowerShell Script ausführen.
Du kannst übrigens auch Ordner in der Bibliothek anlegen, um die Vorlagen zu sortieren.
WICHITG: Die Vorlagedateien müssen die Dateiendung ".dotm", ".dotx", ".xltm", ".xltx", ".potm" oder ".potx" haben.
Für die Ausführung musst du das SharePoint Modul installiert haben.
$orgName = Read-Host 'What is your onmicrosoft.com-prefix? '
Connect-SPOService -Url https://$orgName-admin.sharepoint.com -Credential $userCredential
$TemplateURL = Read-Host 'What is your template library URL?'
Add-SPOOrgAssetsLibrary -LibraryUrl $TemplateURL -OrgAssetType OfficeTemplateLibrary -CdnType Private
Code language: PowerShell (powershell)
Nach der Ausführung dauert es etwas (rechne sicherheitshalber mit 24h) bevor die Benutzer in deiner Organisation in den Office Applikationen unter "Neu" einen neuen Reiter mit der aufgeschalteten Vorlage sehen. Die Vorlage erscheinen in Word, Excel und PowerPoint.
Always amazing tutorial !
Could you create a SAP deployment ?
Thanks, Alessandro!
In what kind of SAP deployment are you interested?
Works like a charm, thanks a lot!
You're welcome! Happy to hear 🙂
Thanks a lot for your tuto !
hi, what could be a downside when enable CDN for Sharepoint or could there problems arise?
Haven't had any problem with it jet, so I don't think there are any downsides.
thanks 🙂
Can i also deploy an office Document Themes in this way?
unfortunately only classic templates.
Hi,
Could you please help me with the Install / uninstall and check scripts in detail ?
I need a deploy a custom PPT template to all Windows 10 devices, will the above steps work ?
Thank you !!
If you want to deploy the templates, you don't need to create a Win32 package. This is only necessary if you want to modify the default template.
Hi, I run the script and the windows just close without any error that I can see.
Can you help me.
Thanks,
Jack
Hi Jack, could be that there's a "ExecutionPolicy" in place.
Could you try to run it via the terminal by cling the script like:
C:\...\install.ps1