Frage

Was wenige sind häufig verwendete Versteckt Listen und Objekte, die wir in Sharepoint wissen sollten?

War es hilfreich?

Lösung

using (SPSite site = new SPSite("http://localhost"))
using (SPWeb web = site.RootWeb)
    foreach (SPList list in web.Lists)
        Console.WriteLine("{0} - {1}", list.Title ?? "(noname)", list.RootFolder.ServerRelativeUrl);

ich:

Cache Profiles - /Cache Profiles
Content and Structure Reports - /Reports List
Converted Forms - /IWConvertedForms
Documents - /Documents
Form Templates - /FormServerTemplates
Images - /PublishingImages
List Template Gallery - /_catalogs/lt
Long Running Operation Status - /Long Running Operation Status
Master Page Gallery - /_catalogs/masterpage
Notification List - /Notification Pages
Pages - /Pages
Quick Deploy Items - /Quick Deploy Items
Relationships List - /Relationships List
Reusable Content - /ReusableContent
Site Collection Documents - /SiteCollectionDocuments
Site Collection Images - /SiteCollectionImages
Site Template Gallery - /_catalogs/wt
Style Library - /Style Library
User Information List - /_catalogs/users
Variation Labels - /Variation Labels
Web Part Gallery - /_catalogs/wp
Workflow Tasks - /WorkflowTasks

ps .: Publishing aktiviert ist, MOSS Enterprise-

Andere Tipps

Es kann nicht eine schrecklich hilfreiche Antwort, aber meine Erfahrung mit Sharepoint-Entwicklung hat gezeigt, gibt es so viele Löcher fallen mit den nicht versteckt und gelegentlich sogar dokumentiert Listen und Objekten, die wandernden in das felsige Gebiet von ausgeblendete sich, ohne Probleme zu stellen.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top