Set Custom Master Page for All subsites
$site = Get-SPSite http://serverurl/
$site | Get-SPWeb -limit ALL | ForEach-Object {$_.MasterURL = "/_catalogs/masterpage/custom.master";$_.Update()}$site.Dispose()
MasterUrl
---------
/_catalogs/masterpage/Custom.master
---------
/_catalogs/masterpage/Custom.master
TypeName: Microsoft.SharePoint.SPWeb
Name MemberType Definition
---- ---------- ----------
AddApplicationPrincipal Method Microsoft.SharePoint.SPUser...
AddProperty Method System.Void AddProperty(Sys...
AddSupportedUICulture Method System.Void AddSupportedUIC...
AllowAllWebTemplates Method System.Void AllowAllWebTemp...
ApplyTheme Method System.Void ApplyTheme(stri...
ApplyWebTemplate Method System.Void ApplyWebTemplat...
BreakRoleInheritance Method System.Void BreakRoleInheri...
---- ---------- ----------
AddApplicationPrincipal Method Microsoft.SharePoint.SPUser...
AddProperty Method System.Void AddProperty(Sys...
AddSupportedUICulture Method System.Void AddSupportedUIC...
AllowAllWebTemplates Method System.Void AllowAllWebTemp...
ApplyTheme Method System.Void ApplyTheme(stri...
ApplyWebTemplate Method System.Void ApplyWebTemplat...
BreakRoleInheritance Method System.Void BreakRoleInheri...
Comments
Post a Comment