惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
H
Help Net Security
Jina AI
Jina AI
V
V2EX
G
Google Developers Blog
B
Blog
GbyAI
GbyAI
U
Unit 42
爱范儿
爱范儿
腾讯CDC
Engineering at Meta
Engineering at Meta
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
小众软件
小众软件
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
博客园 - 聂微东
The Cloudflare Blog
I
InfoQ
Microsoft Azure Blog
Microsoft Azure Blog
Hugging Face - Blog
Hugging Face - Blog
大猫的无限游戏
大猫的无限游戏

博客园 - 举重-若轻

Survey 2遍的解决办法 Error occurred in deployment step 'Activate Features': Feature with Id 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' is not installed in this farm AssetUrlSelector export to excel 用powershell更新user profile service中的一个字段 create a 全局临时表 Generate a random integrater Remote Debugging GAC'd Assemblies in SharePoint get all user profiles redirecting to custom user profile page css的em概念 异步调用的一个例子 .NET种Json时对单引号和特殊字符串的处理 CSS备忘 SharePoint 资料 Server.MapPath方法的应用方法 JSON的客户端和服务器操作 jquery 参考材料 备忘 用powershell更新user的display name
using powershell to change the some sub-webs' system ...
举重-若轻 · 2013-01-26 · via 博客园 - 举重-若轻

Start-SPAssignment -Global
$SiteUrl = "your site url"
$NewSystemMasterPageUrl = "/CorporateCommunications/_catalogs/masterpage/v4.master"
$site = Get-SPSite $SiteUrl
$topWeb = Get-SPWeb $site.Url

foreach ($web in $topWeb.Webs)
{
    #Write-host $web.Title $web.MasterUrl
    $web.MasterUrl = $NewSystemMasterPageUrl;
    $web.AllProperties["__InheritsMasterUrl"] = "False"
    $web.Update();
}

Stop-SPAssignment -Global

Note: Start-SPAssignment here is used for the varialbes disposal purpose

Life is so beautiful

posted @ 2013-01-26 15:44  举重-若轻  阅读(157)  评论(0)    收藏  举报