Domanda

Sto cercando di trovare uno strumento, che mi dice quale Pagina master personalizzata viene utilizzata da un sito Web / sito, ho provato Google, ma non ho trovato nulla di parente.

Cheers

È stato utile?

Soluzione

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.

Altri suggerimenti

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top