Copying content type across site collection

It is a good practice to create a content type and then create a list from it.
Now, say that we create a content type and then create a list from it.
If we want to create similar list in a different site collection, we need to have the content type in that site collection as well.
Could you please let me know how to copying the content type from one site collection to another.
Thanks

Hi,
Thanks for posting your query, Kindly try out the below mentioned script to copying your Content Type from one site to another
Add-PSSnapin Microsoft.SharePoint.PowerShell
$w1 = Get-SPWeb "https://sharepointsite1.com"
$w2 = Get-SPWeb "https://sharepointsite2.com"
foreach ($f1 in $w1.Fields) {
if ($f1.Group -eq "PepsiSiteColumns") {
$f2 = $w2.Fields | Where { $_.Id -eq $f1.Id };
if ($f2 -eq $null) {
Write-Host("Creating field " + $f1.Title + "...");
$f2 = $w2.Fields.AddFieldAsXml($f1.SchemaXml);
$f1.Delete(); # Careful with this one!
} else {
Write-Host("Field " + $f1.Title + " already exists. Not taking any action.");
Also, browse below mentioned URL to fix this issue
http://blog.falchionconsulting.com/index.php/2007/08/copy-content-types/
I hope this is helpful to you, mark it as Helpful.
If this works, Please mark it as Answered.
Regards,
Dharmendra Singh (MCPD-EA | MCTS)
Blog : http://sharepoint-community.net/profile/DharmendraSingh

Similar Messages

  • Deleting the content type hub site collection

    Hi
    I have a content type hub (CTH) site that sits in it's own web app
    In the managed metadata service app properties the "URL of the site collection (Content Type hub) from which this service application will consume content types" is specified as the CTH
    The CTH site has become corrupted - I want to delete the site collection
    If I do this will the URL field in MMS properties become available again so that I can enter a new value - or will I have to delete the whole MMS app and start again
    Any help much appreciated
    Cheers
    Jonj

    Hi,
    Try through the PowerShell script to delete the site collection. and once you manage to delete the site collection, create a new site collection and use the same content type that is a part of Content type hub.
    Remove-SPSite -Identity "URL" 
    Where:
    <URL> is the URL of the site collection you want to delete.
    Thanks
    ARUN

  • Copying Document Across Site Collections to Dynamic Locations - Office 365 / SharePoint

    I have users uploading documents into a library in one site collection and adding a reference number to each file (text box - list item). Can I use that reference number to find a corresponding folder on a different site collection and programmatically
    copy the file to that location? The reference number is part of the name of the folder. SharePoint Designer, Visual Studio, Napa - whichever is easiest. Using Office 365 / SharePoint Online.
    Thanks!

    Hi,
    If the reference number plus with the file name is valid and unique, we will be able to find the wanted folder across site collections by querying this file and its parent folder.
    As the reference number + file name is just a string value of a column of a library, we may need to iterate through all the libraries and check whether there is such a file with
    CAML query statements.
    http://msdn.microsoft.com/en-us/library/office/ms467521(v=office.15).aspx
    http://msdn.microsoft.com/en-us/library/office/hh185007(v=office.14).aspx
    As it is an Office 365 site, Client Object Model or REST API would be choices for accessing data of SharePoint Objects.
    http://msdn.microsoft.com/en-us/library/office/fp179912(v=office.15).aspx
    http://msdn.microsoft.com/en-us/library/office/fp142380(v=office.15).aspx
    In SharePoint 2013, App is a more recommended way when developing custom solution.
    Here are some samples about
    creating SharePoint app for your reference:
    http://msdn.microsoft.com/en-us/library/office/jj901637(v=office.15).aspx
    http://www.c-sharpcorner.com/UploadFile/anavijai/how-to-get-all-the-items-from-the-list-in-sharepoint-2013-on/
    Feel free to reply if there are still any questions.
    Best regards
    Patrick Liang
    TechNet Community Support

  • Site content types and site columns were absent

    hi,
    i have seved a  sub site as a template which includes 20+ doc libs with 20+ site content ctypes which includes  15+ site columns  and then i have used this savedsite template in one site collection and implemented my
    custom web parts and upload document fun. successfully.
    now i have created another new site collection and forgot to create site content types and site columns as  we have seen the  site columns in the saved site template already.
    now i realized that those  site content types and site columns were not there but the strange thing is that i am able to uplaod the documents  into those document libraries  which are not associated with site content types, without any error.
    Can I create  the same in my new site collection ? since i have already created  many many sub sites based on the  saved site templates tested the functionality ,i dont wanna delete the template recreate all the sites  again in order
    to save the time.
    Now pls advice:
    1) if site columns / site contents  were not existing at the site collection level, will this affect my func. in future?
    2)   is there any automated way fo creating site columns, site content types, associateing these site content types with doc libs programmatically like power shell/ sp object model API.
    3) would like to any programmatic way of creating hundreds of sub sites based on the saved site templates in myw eb application/ site collection.

    Hi,
    We can create site columns, site content types or sub-sites using SharePoint Server Object Model.
    The following articles for your reference:
    SharePoint 2010: Create Site Columns and Content Types using C#.Net
    http://social.technet.microsoft.com/wiki/contents/articles/20267.sharepoint-2010-create-site-columns-and-content-types-using-c-net.aspx
    How to: Add a Content Type to a SharePoint List
    http://msdn.microsoft.com/en-us/library/office/aa543576(v=office.14).aspx
    Create Sites Using Custom Site Templates in SharePoint 2010
    http://www.c-sharpcorner.com/UploadFile/63e78b/create-sites-using-custom-site-templates-in-sharepoint-2010/
    How to create sub site with custom site template through PowerShell
    http://fangdahai.blogspot.com/2012/08/how-to-create-sub-site-with-custom-site.html
    Best regards
    Dennis Guo
    TechNet Community Support

  • SharePoint 2013 Custom Content Type with Site Column custom validations

    Hello,
    Can somebody please suggest me how I can create custom content type with site columns with custom validation to site columns programmatically?
    Thanks,
    Praveen Kumar Padmakaran

    Hi,
    From your description, my understanding is that you want to create content type with site column with validation.
    You could create a site column, and add some validation to the site column. After you could create a custom content type, please add the site column with validation to the content type. Please refer
    to this code below:
    static void Main(string[] args)
    // replace your url
    using (SPSite site = new SPSite("http://sp/sites/sp2013"))
    using (SPWeb web = site.OpenWeb())
    //define the type of the field
    SPFieldType type = SPFieldType.Number;
    // create a site column
    SPField field = CreateSiteColumn(web, "newTest", type, "");
    // add custom formula for the field
    SPFieldNumber fieldNumber = web.Fields.GetField("newTest") as SPFieldNumber;
    fieldNumber.ValidationFormula = "=[newTest]>5";
    fieldNumber.ValidationMessage = ">5";
    fieldNumber.Update();
    SPContentTypeId parentItemCTypeId = web.ContentTypes[0].Id;
    // create custom content type
    SPContentType contentType = CreateSiteContentType(web, "newContent", parentItemCTypeId, "Custom Content Types");
    // add the site column to the content type
    AddFieldToContentType(web, contentType, field);
    // add fiedl to contenttype
    public static void AddFieldToContentType(SPWeb web, SPContentType contentType, SPField field)
    if (contentType == null) return;
    if (contentType.Fields.ContainsField(field.Title)) return;
    SPFieldLink fieldLink = new SPFieldLink(field);
    contentType.FieldLinks.Add(fieldLink);
    contentType.Update();
    // create a custom content type
    public static SPContentType CreateSiteContentType(SPWeb web, string contentTypeName,SPContentTypeId parentItemCTypeId, string group)
    if (web.AvailableContentTypes[contentTypeName] == null)
    SPContentType itemCType = web.AvailableContentTypes[parentItemCTypeId];
    SPContentType contentType =
    new SPContentType(itemCType, web.ContentTypes, contentTypeName) { Group = @group };
    web.ContentTypes.Add(contentType);
    contentType.Update();
    return contentType;
    return web.ContentTypes[contentTypeName];
    // create a site column
    public static SPField CreateSiteColumn(SPWeb web, string displayName,SPFieldType fieldType, string groupDescriptor)
    if (!web.Fields.ContainsField(displayName))
    string fieldName = web.Fields.Add(displayName, fieldType, false);
    SPField field = web.Fields.GetFieldByInternalName(fieldName);
    field.Group = groupDescriptor;
    field.Update();
    return field;
    return web.Fields[displayName];
    You could refer to these articles:
    C# code to create Site Column, Content Type, and add fields to Content Type
    http://spshare.blogspot.jp/2013/10/c-code-to-create-site-column-content.html
    How to do custom validation for site column in SharePoint
    http://www.c-sharpcorner.com/uploadfile/anavijai/how-to-do-custom-validation-for-site-column-in-sharepoint/
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected].

  • Image content type in Site Asset Image library: The Preview and Thumbnail Preview columns do not display the picture of the item.

    I have two different Site Asset libraries.  The Site Asset Picture library has items of
    content type picture.  The Site Asset Image Library has items of
    content type image. 
    1) I do not quite understand the different between a picture content type versus an image content type. 
    2) the thumbnail and preview columns do not display the image in the Site Asset
    Image Library.  (the image does display in the thumbnail column of the Site Asset Picture library.)  I expected the image to display in the Site Asset Image Library the same as it does in the Site Asset Picture library. 
    Why doesn't it?
    Betty
    Betty Stolwyk

    I have subsequently found out that our "Site Asset Images" library is a Document Library to which someone must have replaced the Document content type with an Image content type.  I also found out that picture previews/thumbnails cannot be displayed
    in Document libraries.  So the problem was the library type, not the content type.
    So I simply created a new Picture Library (whose content type = picture) and copied the files into that and the thumbnails displayed just fine!
    I bet what led to this is the default "Site Assets" library that is created for a new Team site.  It is just a document library but sounds very similar to the "Assets" library.  I can imagine someone thinking the "Site Assets" library was a standard
    container for images, and simply changed the name to better identify the content! 
    As far as 'image' vs 'picture' content types, I noticed that a new Picture Library contains a content type of 'picture', but an Asset Library contains a content type of 'image' (as well as audio and video).  Although the 'image' content type has a few
    more fields than the 'picture' content type (picture content type does not have thumbnail), the actual Picture Library contains pretty much all the same fields, including the thumbnail.  So for all practical purposes, either library type can be used for
    storage of pictures.  I am guessing that the Pictures Library which uses the picture content type is for backwards compatibility purposes, and that the 'image' content type is newer, being derived from the new "Rich Media Asset" content type and used
    in the new Asset Library which can hold audio and video in addition to pictures.  
    Microsoft Help also mentioned that a Picture Library has a slide view which an Asset library does not.  So my take on that is that if you want the potential of seeing your pictures as a slide show, put them in a Picture library which is still using
    the 'picture' content type of previous SharePoint versions.  If you want to keep pictures organized with audio/video files, then put them into an Asset library which uses the  'image' content type derived from the new Rich Media Asset content type.
    Betty Stolwyk

  • Content types, Required site columns, How are they supposed to work?

    Hi,
    I have 2 issues:
    I created a Folder level content type with many Required site columns. I was hoping that when I create a new folder the new content type screen will pop up and I must enter all the required properties (metadata) for this new folder.
    Issue 1) But it didn't work that way.  It just required me to enter the name of the folder and the folder was created.
    Issue 2) I then went to Edit Properties to enter enter all the required metadata.  I would like to have my newly created content type to be the default.  So that when I open up the Edit Properties the popup screen would defalt to my new
    content type.  But it defaults to "Folder" Content type.   even though in liberary setting, My new content type was the only one check "visible" and set as default.
    Can someone please help? Am I missing something?
    Thanks!

    I don't think you can do what you want to do using only out of the box features. A few notes:
    Users will need to click the New Document dropdown in the ribbon to select your new folder content type. (I.e. Don't click New Folder)
    The "default" option in the content type list is to pick the default content type to be selected when you click the New Document button. (I.e. it won't impact the New Folder ribbon button)
    The ribbon button for New Folder is hard coded to use the built in folder feature.
    You may want to look into the 2010 Document Set feature to create folders with metadata. It will do what your custom content type does and a lot more.
    Possible solutions:
    Create JavaScript hack that changes the New Folder link in the ribbon to go to the New Document link for your custom content type.
    Create a Visual Studio Feature to hide the New Folder button and add a new New Folder button that points to the New Document link for your custom content type.
    Leave the existing New Folder button there and create Feature to add a new custom button for your content type.
    Mike Smith TechTrainingNotes.blogspot.com
    my SP customization book

  • Usage of relative url across site collections in sharepoint 2010

    Hi
    I have a webapplication with 2 sitecollections. In one sitecollection, created a link by going to navigation under sitesettings.
    Added relative url to map to 2nd site collection. Eg: /sites/site2/page1.aspx
    But by doing so, it is giving error. Help me out how to give relative url pointing to different site collection from another sitecolleciton.
    Thanks in advance
    Naina 

    Say, Site Collection 1 URL: http://sitecollection1.domain.com/
    Site Collection 2 URL : https://sitecollection2.domain.com/
    Now, on "Site Collection 1", In Site Actions-->Site Settings-->Navigation, when you use "relative URLs", it will always refer to the current Site Collection i.e Relative URL "/sites/site2" will always be "http://sitecollection1.domain.com/sites/site2".
    Anyways, what is the "requirement". What are you trying to solve by using "relative URL" for Site Collection 2 on Navigation of Site Collection 1. Reason for asking is, there might be different approach for your "requirement".
    Naveed.DG MCITP, MCTS -SharePoint 2010 Administrator "Vote As Helpful" If it helps!!

  • Calendar Overlay Across Multiple Site Collections

    I have searched the forums and have not found a solution to this question.
    We are having trouble creating calendar overlays across site collections.
    Specifics:
    1. This is a single farm SharePoint 2013 installation.  Version: 15.0.4481.1005
    2. We have a single web application http://sharepointweb on port 80
    3. We are using host-named site collections
    4. We have separated the different departments into separate site collections because we want to take advantage of separate content databases.
    When we create calendar overlays between calendar lists within a single site collection...it works fine.  When we try to create calendar overlays between site collections (again, within a single web app) it fails with the message "Unable
    to find specified web in the given URL".
    Some more details:
    ## query of host headers for HNSCs
    Get-SPManagedPath -HostHeader
    Name Type                          
    ExplicitInclusion             
    sites WildcardInclusion             
    departments WildcardInclusion
    ## query of URLs for two affected site collections
    get-spsiteurl -id 'http://smportal04/departments/dev'
    Url Zone
    http://intranet/departments/dev Default
    http://sharepoint/departments/dev Internet
    http://portal/departments/dev Intranet
    get-spsiteurl -id 'http://intranet/departments/it'
    Url Zone
    http://intranet/departments/it Default
    http://sharepoint/departments/it Internet
    http://portal/departments/it Intranet
    ##The only entries I can find in the ULS logs
    ## an example of when I try to do a calendar overlay from the http://intranet/departments/dev calendar
    ## referencing a calendar in http://intranet/departments/it calendar
    Application error when access /_layouts/15/AggregationCustomize.aspx, Error=Unable to find specified web in the given URL - http://intranet/departments/it.   at Microsoft.SharePoint.ApplicationPages.Calendar.MashUpCalendarListAccessor.OpenWeb(String
    webUrl, SPWebApplication webapp)     at Microsoft.SharePoint.ApplicationPages.AggregationCustomizePage.RetrieveListsWithCalendarView(String webUrl)     at Microsoft.SharePoint.ApplicationPages.AggregationCustomizePage.FindListFromId(String
    id)     at Microsoft.SharePoint.ApplicationPages.AggregationCustomizePage.UpdateListViewDropDownList()     at System.Web.UI.WebControls.ListControl.OnSelectedIndexChanged(EventArgs e)     at System.Web.UI.Page.RaiseChangedEvents()
        at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Getting Error Message for Exception System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> Microsoft.SharePoint.SPException: Unable to find specified web in the given URL - http://intranet/departments/it.
        at Microsoft.SharePoint.ApplicationPages.Calendar.MashUpCalendarListAccessor.OpenWeb(String webUrl, SPWebApplication webapp)     at Microsoft.SharePoint.ApplicationPages.AggregationCustomizePage.RetrieveListsWithCalendarView(String
    webUrl)     at Microsoft.SharePoint.ApplicationPages.AggregationCustomizePage.FindListFromId(String id)     at Microsoft.SharePoint.ApplicationPages.AggregationCustomizePage.UpdateListViewDropDownList()     at System.Web.UI.WebControls.ListControl.OnSelectedIndexChanged(EventArgs
    e)     at System.Web.UI.Page.RaiseChangedEvents()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.HandleError(Exception e)  
      at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)  
      at System.Web.UI.Page.ProcessRequest()     at System.Web.UI.Page.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()     at
    System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

    Hi Roo, 
    i tried some steps, i agree with you that seems calendar overlay cant do good across web application, 
    from http://y:1234/ and http://y:4563/. seems there are limitation here. 
    when i extend my web app, usually i create new web app as internal/external/public, then i guess issue is happened. 
    so, anyway, i got a bit curious if your environment also came out with the same result:http://support.microsoft.com/kb/2025977
    at the kb, it was stated, that it may not able to find another site other than the default web app.
    but, while i tried in the same web app, the issue not there.
    so i tried to create new site collection, with lots of subsites, http://y:1234/. then have http://y.1234/sites/123 and http://y.1234/sites/456, for example, i add new calendar and create overlay, seems it can resolve each one and another.
    perhaps you can check this article:
    http://spsawyer.wordpress.com/2013/07/11/sharepoint-calendar-overlay-not-found-errors/
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Document ID moving across the site collection

    Thanks for reading, let me explain my scenario before my question
    1. we have huge site collection with full of documents
    2. want to enable document id feature to track of documents
    3. we want to run the process to archive docs which are older than 6 months into different site collection.
    4. after 2 years, we will have 4 archived site collections, documents are spread across the various site collection
    Does document id move across the site collections, still users can get old document using initially assigned document id after archive into different site collection?
    I read some documentation on document iD that it is targeted for Site Collection level.
    S.Venkata Appaji

    Hi Appaji,
    According to your description, my understanding is that you want to preserve the Document ID when moving the documents across site collections.
    Per my knowledge, the document id will be preserved when the document has been moved from one Site Collection to another Site Collection.
    During move operations, SharePoint Server 2010 keeps the document ID. During copy operations SharePoint Server 2010 assigns a new document ID. You can control this by setting a Boolean operator on the PersistID column.
    More references:
    http://msdn.microsoft.com/en-us/library/ee559302(v=office.14).aspx
    http://www.sharepointeurope.com/blog/2013/6/26/sharepoint-moving-a-document-with-a-document-id-to-another-site-collection
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Search across multiple site collections SharePoint 2013

    Hi Guys
    I have a search center and Enterprise search configured in one site collection, I need to enable it to search content in other site collections too. I am using SharePoint Server 2013 Enterprise on a Windows Server 2012 R2. Can I promote results from
    a particular site collection if the user initiates search from that particular site collection..?
    Thanks in Advance
    Parth

    Hi,
    From your description, you want to find a way to promote result from a particular site collection when users search on
    Enterprise Search site.
    To add promoted result, you can create new query rule and add
    Promoted Result or Result Block to highlight the results you want.
    Moreover, What do you mean when you say promote results from a particular site collection if the user initiates search from that particular site collection?
    A real sample? Please explain more about your requirement so that we can provide more detailed information.
    If you are new to SharePoint 2013 search, you may start from:
    Search in SharePoint Server 2013
    http://technet.microsoft.com/en-us/sharepoint/jj898538.aspx
    Manage
    Manage the      search schema
    Manage the Search Center
    Manage search      relevance
    Manage crawling
    Manage the      search topology
    Back up      and
    restore
    Use      Windows PowerShell cmdlets to manage search
    Miles LI TechNet Community Support

  • Content Deployment across Publishing site.

    Dear All, We are now having a requirement in SharePoint 2013 where we will have to move content from one site collection to another site collection. Here we are facing an errors as both the site collections are enabled with publishing features. Can any one
    provide us to perform Content Deployment between 2 site collections having publishing features enabled.
    Thanks in advance.

    I'm not sure I follow the question.  Quick Deployment is just a security setting that allows certain users to tag specific content to be pushed to the target location outside of a regular content deployment.  The process is still the same.  So
    if you can do a regular deployment and your user has the ability to do a quick deployment then you should be able to tag content for a quick deploy.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Cant delete orphaned content type, it says : "The content type is part of an application feature."

    I created site from existing site template that previous vendor working with company created. I could figure that they saved site as template and when you do that sharepoint creates sandboxed solution. When I create site based on that template, it adds orphaned
    content type and when I try to delete it, it gives error : "The content type is part of an application feature.".
    I looked on internet but solutions dont seem to fit in my scenario.
    Following are possible solutions I read on net.
    1) Deactivate feature that has content type and all dependencies for content type and then delete content type --- In my case there is no feature in feature galary that you can deactivate as it is part of site template.
    2)Get the WSP and edit in visual studio, I am working on client machine and I do not have access to sharepoint server. When I try to create new visual studio project with "Import sharepoint solution package", it says Sharepoint server is not installed
    on this computer. I tried to get Microsoft.Sharepoint dll from Microsoft virtual lab but I can only work on web client and windows client doesnt work. Web client is not letting me copy files into my local desktop.
    Any suggestions ? I just need to take that content type out and generate WSP and upload it back
    Dhaval Raval

    Below is how I recreated problem , my findings and solution to this problem (Everything is done through Sharepoint UI)
    Problem :
    Create site and create custom content type using sharepoint UI.
    Save site as template.
    Use above template to create new site.
    New site contains orphaned content type, when you try to delete that unnecessary content type sharepoint gives error: The content type is part of an application feature. Sharepoint will not let you delete this content type.
    Delete original site from which template was created.
    Findings:
    When you save site as template, sharepoint creates and activates Sandboxed solution in solution gallery of Root Site.
    Sandbox solution has same name that you gave when saving site as template.
    Activation of Sandboxed solution adds feature having name of original site from which template was created, and this is Site Collection Feature. I could not find any site feature for it and also I could not find any site feature for custom content type
    as well. I think when you create content type through Sharepoint UI, it doesnt create site feature for that.
    Deactivating site collection feature for that site template doesn't let you delete that orphaned content type from newly created site.
    Solution:
    If you deactivate Sandboxed solution from Solutions gallery, it will remove corresponding site collection feature as well as that orphaned content type from site. Reactivating that solution doesn't add orphaned content type back to newly created site.
    Above process only deletes orphaned content type from newly created existing site but you will have same problem when you create more new sites from that site template.
    I would say once your problem is fixed with deleting content type, solution is to replace site template. In this way newly created sites wont have same problem again.
    Dhaval Raval

  • Publishing Feature for Site Collection

    Hi..
    I am having 5 different Site Collections in SharePoint Site and from 1st Site Collection we are redirecting to other using Top Link bar, but when we enable Publishing Feature for Different Site Collections the Top Link bar changed..i want to have Standard links
    for all
    Ravindranath

    Publishing feature is applicable to a Site Collection and its sites.
    Quick Approach
    A quick solution will be to manage the Navigation (via Site Actions -> Site Settings -> Look and Feel -> Navigation -> Navigation Editing and Sorting -> Global Navigation) for all 5 site collections and add same links. This will show the same
    top links for all your site collections.
    Correct approach - 
    For using same navigation (top links) across site collections withing same web application, you need to implement Global Navigation. Google this and you'll find lots of good articles to implement this - Create an xml for site map, copy this to your web application
    directory, add the provider in web.config, update the master page to bind the provider to SiteMapDataSource.
    This is a proper approach where if you update the xml, changes get applied to all site collections.

  • Site collections and quicklaunch

    I'm new to Sharepoint and have a basic design question. On the homepage quick launch I would like a link to each department. If I create each dept as a site I can simply inherit the parent quick launch, great. But it has been recommended that I create each
    dept as a site collection instead to allow flexibility and growth. Problem is that there is no integration with the parent quicklaunch- it's just independent. Any suggestions on design?
    -John

    Hi John,
    Yes its good to have site collection at each department level with separate content database, but the moment you have this structure it will be difficult for you to navigate across site collections. The  alternate approach to have the please navigation
    across site collection is to create Site Map xml and use site map provider. For more details on how to implement this please go though below links
    http://www.ericjochens.com/2013/04/consistent-top-navigation-menu-across.html
    http://www.fusecollaboration.com/Blog/archive/2012/03/14/sharepoint-cross-site-collection-common-top-navigation.aspx
    http://blah.winsmarts.com/2008-1-implementing_consistent_navigation_across_site_collections.aspx
    Raghavendra Shanbhag | Blog: www.SharePointColumn.com
    Please click "Propose As Answer " if a post solves your problem or "Vote As Helpful" if a post has been useful to you.
    Disclaimer: This posting is provided "AS IS" with no warranties.

Maybe you are looking for

  • How to stop printing mirror image in word 2008

    Hello, Since yesterday, I have had occasional problems: documents are printed with the text in mirror image and last night a word document saved as a pdf file also had the text reversed. When I saved the same document as pdf a second time, it was fin

  • URGENT : replacing some letters in an expression

    Hi all I think that I should post this topic here because I think it concerns SQL and PL/SQL functions. Here is the problem : I am developping a forms application . There is a listbox named FORMULA containing list of formulas. When I choose a formula

  • SP A60 does not start up

    I have a satellite pro A60 which was working fine yesterday, but today will not start up. The first time I turned it on this morning it showed the toshiba welcome screen, then the screen went black with a flashing cursor in the top left, but would no

  • TS1591 iPad flashes apple once then does not start up.

    My iPad will not start up. I try to restore it and the apple flashes once then blank again. What can I do to start it up?

  • Factory settings on pavilion s5212y

    I need to restore my Pavilion Slimline s5212y back to factory settings. My computer is all messed up, lol. I don't have any discs except restore cd which there is 3 but don't know what to do. everytime i go to recovery manager it restarts my computer