I want to create new SPWebs with a Custom Template.
$web = New-SPWeb $Url
$web.ApplyWebTemplate("{GUID}#MyCustomTemplate")
My problem is now that the creation from one SPWeb with the Custom Template takes about 40 s on my VM. Is there a other and faster way to create SPWebs with a Custom Template?
Why not use -template parameter. For example,
I did not have a custom template to use but this took 2 seconds on my system.