How to identify Site Owner in Sharepoint 2010 ?

 I have a site, but i have a confusion about how to identify Site Owner.
I know Site Collection Administrator, but i dont understand how to identify SIte Owner.

Site Owner is the user who has full control over the site who can perform all the task related to site like Site Permissions, Manage Lists etc. You can check the associated Site Owner group at
 http://siteurl/_layouts/permsetup.aspxwhere
siteurl is your Site URL.
Hope this will help.
Sharepoint Sutra
Sharepoint Consultant

Similar Messages

  • How to block specific DL in SharePoint 2010 application.

    Hi All,
    We have SharePoint 2010 farm. I have a requirement to block specific Distribution List which should not recognized when user trying to give access at (user.aspx page)site level.
    How can i  restrict this in SharePoint 2010 farm.
    Regards
    S. Mani

    You can use content editor webpart to run javascript. Java script will redirect users from accessing the site. You need t o specify the user Id; it wont work on DL
    Blow is the java script:
    ==================Script Start ===============
    ExecuteOrDelayUntilScriptLoaded(getWebUserData, "sp.js");
    var context = null;
    var web = null;
    var currentUser = null;
        function getWebUserData() {
            context = new SP.ClientContext.get_current();
            web = context.get_web();
            currentUser = web.get_currentUser();
           currentUser.retrieve();
            context.load(web);
            context.executeQueryAsync(Function.createDelegate(this, this.onSuccessMethod), Function.createDelegate(this, this.onFailureMethod));
        function onSuccessMethod(sender, args) {
            var userObject = web.get_currentUser();
            if (userObject.get_loginName() == 'i:0#.w|domain\userid')
               window.location="/businesses/pulpandfibre";
        function onFailureMethod(sender, args) {
            alert('request failed ' + args.get_message() + '\n' + args.get_stackTrace());
    =============Script End===============

  • Issue with list saving data after sites upgrade from sharepoint 2010 to sharepoint 2013

    Issue with list saving data after sites upgrade from sharepoint 2010 to sharepoint 2013 
    Newform.aspx of list:-
    Custom List is not saving data sometimes in the new form after 15 minutes and only blank entry record got created without saving data, even though some columns are mandatory fields?

    Hello dcakumar,
    Sounds like a strang issue. If you can reproduce this can you see some errors in the ULS logs?
    - Dennis | Netherlands | Blog |
    Twitter

  • How to create Site Directory in Sharepoint 2013

    Hi All
    I have a requirement to create Site Directory in SP-2013 , It should list all the sites available in Farm. Can you please Guide me how to do this. It will be a great help
    Thanks in Adavnce
    Manoj Gangwar
    Manoj Gangwar | Sharepoint 2010 MCPD | Sharepoint 2010 MCTS

    Hi Manoj,
    You can check if the following article could work for your requirement with using the PowerShell script code to loop and list all sites' URLs,
    Thanks
    Daniel Yang
    TechNet Community Support

  • 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!!

  • Regarding the Site Definition in Sharepoint 2010

    Hi Forum,
    I am working on sharepoint 2010,
    I created SiteDefinition through visual studio in Sharepoint 2010, after deploy in sitedefinition.
    I got new features to add in that existing sitedefinition.Can you please tell me how to proceed.
    I am thinking i can use FeatureStapling or any other way?
    please assist me regarding this issue.
    Rama

    Hi Rama,
    Feature Stapling  is the great way if the site definition is already in use (and sites have been created).
    The following articles for your reference:
    http://blogs.msdn.com/b/kunal_mukherjee/archive/2011/01/11/feature-stapling-in-sharepoint-2010.aspx
    http://www.codeproject.com/Articles/626731/Feature-Stapling-in-Sharepoint
    Best Regards
    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]

  • How to design SSRS report using SharePoint 2010 List Version History

    Hello,
    I am using  Sharepoint 2010 list, i need to design SSRS report using Sharepoint List Version History. Could please let me know how to design.
    Thank you.
    Kind Regards

    You could do that with SQL Server Reporting Services, Please follow the instructions from the link below:
    http://www.mssqltips.com/sqlservertip/2068/using-a-sharepoint-list-as-a-data-source-in-sql-server-reporting-services-2008-r2/
    Hope that would work fro you.
    Please Mark as Answer, if the post works for you.
    Cheers,
    Amar Deep Singh

  • How to activate Custom Feature in SharePoint 2010 using Client Object model

    I am trying to Activate a custom feature using Client Object Model in SharePoint 2010. Here is the code I used. When I execute the code, I got the error "Feature with Id 'xx' is not installed in this farm, and cannot be added to this scope while
    creating site collection". Can anyone help?
    ClientContext clientContext = new ClientContext(spURL);
    //GUID of the custom feature                    
    Guid districtFeatureId = new Guid("5b3529de-5045-46da-af87-8d2e32c121a7");
    Site clientSite = clientContext.Site;
    FeatureCollection clientSiteFeatures = clientSite.Features;
    clientContext.Load(clientSiteFeatures);
    clientContext.ExecuteQuery();
    //Activate the feature
    clientSiteFeatures.Add(districtFeatureId, false, FeatureDefinitionScope.Site);
    clientContext.ExecuteQuery();

    Hi shil chan,
    When you activate a feature on the site collection, the feature should be scoped to site or farm, the error message shows it cannot find the specific feature, this will happen when you have a feature in web
    scope or the feature isn’t installed.  
    So, to troubleshooting this issue:
    Verify whether the feature is scoped to web. Please go to
    Site Setting->Site Features . If the feature is a web scope feature, then add the feature to webfeatures.
    Make sure the feature is installed correctly.
    Please inform me freely if you have any questions.
    Thanks

  • How to Archive a list in sharepoint 2010

    Hi
    I think large list is the inevitable trend and will be a very common issue faced by everyone. We are a medium business using sharepoint 2010.
    For past 3 years, one of our SharePoint lists is over 20000 items.
    From my end:
    1.     I have indexed some important columns and created filtered views but it does not help much.
    2. I have increased the list threshold value to 25000( Even though the best practice is 5000).
    3. Also,  I have set the list template size to 500MB 
    4.     When I try to save the list as a template,  SharePoint throws an exception error.  
    5.   I tried working on the code
    mentioned in the link
    below but it looks complicated for me.
    http://spboom.com/sharepoint-development/moving-sharepoint-list-items-to-archive-list/
    What I need:
    I need to archive old items in the list.  After archiving,  I might need to refer to the archived items from time to time.
    As I'm newbie to SharePoint, it would be great, if someone can elaborate in detail with what can be done.
    Again your help in this is much appreciated.
    Thanks & Regards,
    SweR

    What vesion of SharePoint are you using?  If you want to move items across from one list to another (as per your prefered option), something like: -
    Create a list template of you list with no content
    Recreate it on the same level as the main lis
    Create an SPD workflowthat'll copy an item to the new list and delete the original.  Make sure it doesn't have a triggering action
    Use an Expiration Information Rights Policy to triger the workflow. 
    Please note that this won't preserve the original author / create metadata as Alex has already said.
    Cheers,
    Steven Andrews
    SharePoint Business Analyst
    Blog:
    Steve's SharePoint Space  Twitter:
      LinkedIn:
      Facebook:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • How to Create Custom List in SharePoint 2010 Programmatically ?

    Hi,
    i have tried the following way, 
    http://devendra-sharepoint.blogspot.in/2012/01/creating-list-programatically-in_30.html
    But i am not able to create list.
    Becuase i am getting the following error.
    'Microsoft.SharePoint.SPWeb' does not contain a definition for 'EnsureList' and no extension method 'EnsureList' accepting a first argument of type 'Microsoft.SharePoint.SPWeb' could be found (are you missing a using directive or an assembly reference?)
    Please advice.
    Thanks,
    Aasai

    Hi,
    You can use list.Fields.Add() to add column in list. See below blog:
    http://www.c-sharpcorner.com/blogs/3764/create-sharepoint-list-programmatically.aspx
    Use this to delete list:
    http://www.c-sharpcorner.com/UploadFile/54db21/delete-list-in-sharepoint-2010-programmatically-using-vs-201/
    See this for remove user/group from list:
    http://www.c-sharpcorner.com/UploadFile/54db21/remove-group-permission-to-list-in-sharepoint-2010-programma/
    Hope it could help
    Hemendra: "Yesterday is just a memory,Tomorrow we may never see"
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • How to enable autocomplete option in SharePoint 2010

    Hi,
    I have created a multiple selection dropdown in SharePoint (which is a long list). It takes really long to find and select the options from the  list. Is it possible that when we start typing (say the name) it starts showing the
    options starting with that particular alphabet?
    Thanks.
    N

    Hi,
    Use, "$().SPServices.SPAutocomplete"
    with jquery
    http://spservices.codeplex.com/wikipage?title=%24().SPServices.SPAutocomplete
    or
    http://tomvangaever.be/blogv2/2011/07/sharepoint-2010-autocomplete-with-list-items/
    Thanks
    -Rahul

  • How to develop Quiz Application in SharePoint 2010

    Hi All, Please provide me steps or code to develop Quiz application for SharePoint 2010.Thanks and regards, Anandha Babu M.

    Hi
    I followed the url http://blogs.technet.com/b/brenclarke/archive/2009/04/14/creating-a-quiz-web-application-using-sharepoint-designer.aspx 
    to develop the quiz app in sp2010 designer. I completed all.but I am facing problem in Score area i.e When user selected answer and correct answers are same my "Marks given" field which is a calculated column  still shows 0.. ideally it should be "1"
    . and also when i click on submit the answers are added twice. 
    Can anyone help me out in this
    Thanks in advance
    nain1987

  • While loading site collection in SharePoint 2010, Error shows "Could not find the file or assembly or one of its dependencies. The system cannot find the file specified."

    I have restored one web application in SharePoint Server 2010 from a different domain and  can complete successfully. Changed each users domain also to old to new one by using Move-SPUser. But While accessing the site collection it is showing an error
    that  "Could not load file or assembly 'A##.SP.Intranet, Version=1.0.0.0, Culture=neutral, PublicKeyToken=03b4f320ebedaffc' or one of its dependencies. The system cannot find the file specified."
    What may be the reason? Please help me to solve this issue since I am stuck up on this .
    Regards 
    Mine1981

    Hi Nico
    Martens,
    Thank you for your reply. But
    how can I find out the custom solutions in the source farm. I didn't got any other details regarding this farm other than WSS_Content, Web application Database, SharePoint_Config database back ups.
    Please help me to solve the
    issue.
    Regards
    Mine

  • How enter prise search works in sharepoint 2010

    In my organization enterprise search is configured ,
    -- sharepoint farm has
    -- two index servers ( share point server search  service is  configured in this servers)
    two web front end servers(sharepoint foundation web applications, and  share point server search  service is  configured in this servers)
    - two  application servers( central admin service is running)
    - one sql server
    here i am new to this area
    here how entr prise search works,  why index servers used
    index data stored sepratly in thi servers?
    and when user query for any documentid where it will search initially
    i know the concept of search there are 3 things
    1) query
    2)index
    3)crawler
    adil

    Hi,
    In Microsoft SharePoint Server 2010 Search, index partitions are groups of query components, each of which holds a subset of the full text index and which return search results to the query originator. Each index partition is associated with a specific property
    database containing metadata associated with a specific set of crawled content.
    The index server manages the crawling and indexing of SharePoint Server content and maintains the index file. The index service works with the query service to let you search SharePoint Server content.
    Every SharePoint Server deployment must have at least one index server. Additional index servers may be necessary as the deployment grows. There can only be one index server per server farm.
    If you use the web front end as your query server.  This tells the index server to propagate its index to the WFEs that are set as query servers so that they have a local copy of the index.
    When someone does a search (this is done on the WFE), then that WFE will search itself locally instead of going across the network to query the index server.  
    This increases speed at the time of query, but it of course introduces additional overhead in terms of having multiple full copies of the index on the network and the network demand of propagating those index copies all the time. 
    If you select the query role on your index server, then the index will not get propagated and all searches will query the index server across the network.  
    For more information, you can refer to the following article.
    http://www.sharepointpitstop.com/2012/08/sharepointsearch-index-query-crawl.html
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • While back up and restoring the business intelligence site collection in sharepoint 2010

    Hi,
    i am trying to take backup of business intelligence site collection from one sharepoint server and restoring it to the 2nd sharepoint server,backup and restore successfully completed.i have configured all the performance point services on new server also.
    but still i am getting below error:-
    An exception occurred while rendering a Web control. The following diagnostic information might help to determine the cause of this problem: Microsoft.PerformancePoint.Scorecards.BpmException: The filter no longer exists or you do not have permission
    to view it. PerformancePoint Services error code 20700.
    Can anybody suggest me how to resolve these error.
    And the dashboard is looking like below:-

    Hey Surbi
    I'm facing the same issue, actually restored a backup of the BI site collection into a different web app (on the same server) but get the same errors as you!
    Looking into it the connection to the report or filter (whatever artefact it is) needs to be refreshed so technically the report doesn't exist as far as the performance web part is concerned!
    However when I re-attached the web part to the filter or report I got a different error... 'This data source no longer exists'
    So basically I found I had to re-create the reports and filters etc in Dashboard Designer... to re-create the dashboards. I did one page and don't want to spend months re-doing them!
    Anyone come up with a way of preserving the web parts references to performance point items and the items connections to their data source in a restore of a site collection?

Maybe you are looking for

  • Multiple apple id's

    I have an apple ID and a me account. When I go to make a purchase in iTunes or the app store, I get the pop up to confirm the purchase. Sometimes my apple ID pops up and sometimes my me account pops up. How do I control which one pops up? Sometimes,

  • How can I import mailboxes from Eudora to my new POP Mail account?

    Good afternoon! I have 10.4.11 on my Mac Mini and want to transfer my mail service from Eudora to Mail. I opened a POP account, but when I tried to import mailboxes from the Eudora Folder stored in Documents I got an Error message: No valid Eudora fi

  • SUDDEN MAIL ERROR

    So I fire up the computer this morning to send some e-mails and I get this message.. "ERROR: This message could not be delivered and will remain in your Outbox. Verify that you have addressed this message correctly. Check your SMTP server settings in

  • How to include bcc function in thunderbird mail?

    I want to send e-mails to multiple recipients without revealing their e-mail addresses to each other. How can I do that with Thunderbird mail?

  • How do i download my last iCloud backup to my new phone?

    How do I get my last iCloud backup downloaded on my new iPhone6?