zettelkasten/OneNoteExport/Kommunikationstechnologie/Sharepoint/HOWTo's/47_Sitetemplates.md
Ralf Koop 5a108aa2b4 .
2023-08-25 23:29:11 +02:00

809 B

Sitetemplates

Donnerstag, 4. Juli 2019

15:12

 

Übersicht

https://social.technet.microsoft.com/wiki/contents/articles/52674.sharepoint-server-2019-list-of-all-templates.aspx

 

oder Abfrage per Powershell:

Get-SPWebTemplate | select name, title, description

 

Aus <https://sharepoint.stackexchange.com/questions/259685/unsupported-site-and-list-templates-for-sharepoint-2019/259903>

 

 

 

???Template einer bestimmten Site bestimmen ;-)

->

$SPWeb = Get-SPWeb "http://URLtotheSite"
$SPWeb.ListTemplates | Select Name, type, type_client, Description
$SPWeb.dispose()

 

Note:change the "http://URLtotheSite" to your site URL.

 

Aus <https://sharepoint.stackexchange.com/questions/259685/unsupported-site-and-list-templates-for-sharepoint-2019/259903>