Pregunta

Tengo un problema, básicamente he instalado una plantilla web y se instaló bien.Cuando intento crear un sitio web, veo esta plantilla en la lista y puedo elegirla y en función de esta plantilla crear un sitio.

Pero de manera estrangulada, quizás no se registre bien o no sé por qué, pero cuando ejecuto el comando de PowerShell, Get-SpwebTemplate, no está allí.También puedo encontrarlo en la colmena en Sitetemplate ...

Limpié el caché y hice IISRESET, pero aún así no está allí, aunque funciona, ¿cómo lo arreglo?

¿Fue útil?

Solución

Your webtemplate is probably not globally deployed

[..]the documentation for Get-SPWebTemplate which states “Displays all globally installed site templates that match the given identity.” A sandboxed solution is not globally deployed, which explains why the template couldn’t be found. Source

Try this:

$web = get-spweb http://intranet
$template = $web.GetAvailableWebTemplates(1033) | Where-Object {$_.Name -eq "My Custom Template Name"}

#Uncomment to create web..
#New-SPWeb -Url "http://intranet/site1" -Name "Site 1" –Template $template

This will get it from available web templates instead, see more (and source of above script) here

Otros consejos

After trying to figure this out myself, I got the following that is dynamic. Hope this helps someone else that needs to use a template in multiple places.

$Siteurl = "http://intranet/site/custom"

$SPW = Get-SPweb $Siteurl

$template = $SPW.GetAvailableWebTemplates(1033) | Where-Object {$_.Title -eq "MyCustomTemplate"}

write-host "Applying custom template..."

$SPW.ApplyWebTemplate($template.Name)

$SPW.update()

Perhaps you may need to restart the server. I recently had a similar issue. However, I was migrating from SP 2010 to SP 2013. See here for more info: http://sharepointnadeem.blogspot.com/2014/01/sharepoint-2013-missingsitedefinition.html

Licenciado bajo: CC-BY-SA con atribución
scroll top