質問

私はツールを見つけようとしています、どのカスタムマスターページがWeb /サイトで使用されているかを教えてくれました。

歓声

役に立ちましたか?

解決

A simple PowerShell script would do it. There's a MasterUrl and CustomMasterUrl property on the SPWeb object, so you could just do something simple like Get-SPSite | Get-SPWeb | % {"Site: " + $_.Url + " Master: "+ $_.MasterUrl} to list out the master for every web.

他のヒント

Open Site in SharePoint Designer 2007, In "_catalogs" folder, you will find a sub-folder named as "masterpage", extending this folder will display you masterpage being used for that specific site/web.

You can follow this link if you dont know how to open a site in sharepoint designer 2007

Opening a Site in Sharepoint Designer

and you will "_catalogs" folder in "Folder List" on top left hand side.

Cheers

ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top