前言web
最近在羣裏幫忙回答問題,碰到這麼一個尷尬的問題,有人建立了一個新母版頁,而後引用了新的母版頁,不知道怎麼的母版頁有問題了,再也進不去站點了,但願修改回舊的母版頁。運維
看到問題,想了一下,其實兩種方法能夠解決,一個是用SharePoint Designer打開站點,找到舊的母版頁,直接設置就好了(前提是Designer還能打開);工具
第二種方法就是用PowerShell命令來解決了,命令以下:spa
$web = Get-SPWeb http://sharepoint $web.CustomMasterUrl = "/_catalogs/masterpage/nightandday.master" $web.MasterUrl = "/_catalogs/masterpage/nightandday.master" $web.Update()
結束語code
其實,SharePoint PowerShell在開發和運維中,有着很是棒的幫助,你們必定不要忘記這一工具。blog