Prevent Site Members to view Site Contents Page in SharePoint 2013

I created SharePoint 2013 Site and it has 5 variation sub sites as well. Each site has several pages. I have end users added to Site Members group who should access all the Custom pages. Customer has raised a security issue, end users are able to access
Site Contents page by supplying the link in the URL. I tried adding these end user to site visitors but unfortunately they are not able to access variations sub sites custom pages.
Kindly help me how to solve this.

Little confuse. 
You want to stop users from viewing page or you want them to to be able to view pages
Which pages are they able to view. 
Just follow below steps to prevent users form accessing application pages
http://blog.mastykarz.nl/preventing-authenticated-visitors-browsing-system-pages/
You can even try this powershell
param (
    $WebApplicationUrl
$wa = Get-SPWebApplication $WebApplicationUrl
$wa.PolicyRoles.Add("Deny System Pages",
"", "EmptyMask", "ViewFormPages")
$wa.Update()
$claimType = "http://schemas.microsoft.com/sharepoint/2009/08/claims/identityprovider"
$claimValue = "AspNetMembership"
$claim = New-Object Microsoft.SharePoint.Administration.Claims.SPClaim($claimType,
$claimValue, "http://www.w3.org/2001/XMLSchema#string", [Microsoft.SharePoint.Administration.Claims.SPOriginalIssuers]::GetIssuerType("SecurityTokenService"))
$encodedClaim = $claim.ToEncodedString()
$policies = $wa.ZonePolicies("Default")
$policy = $policies.Add($encodedClaim
, "Authenticated visitors")
$policy.PolicyRoleBindings.Add($wa.PolicyRoles["ViewFormPagesLockDown"])
$wa.Update()
If you want restrict users to access some specific page, the you need to remove inheritance of the site 
If this helped you resolve your issue, please mark it Answered

Similar Messages

  • Example to see all site collections in a specific content DB in sharepoint 2010

    Can someone give an example to see all site collections in a specific content DB
    in SharePoint 2010.
    I've tried the below ones but it gives all content DB's with all site collections.
    Get-SPContentDatabase | %{Write-Output "- $($_.Name)”; foreach($site in $_.sites){write-Output $site.url}}
    Appreciate your help

    Use Get-SPSite cmdlet
    $spAssgn = Start-SPAssignment;
    Get-SPSite -ContentDatabase "<SPContentDBName>" -Limit ALL -AssignmentCollection $spAssgn|Select Title,Url;
    Stop-SPAssignment $spAssgn;
    Get-SPSite
    This post is my own opinion and does not necessarily reflect the opinion or view of Slalom.

  • Does anyone know how to customize a Site page on SharePoint 2013? Also does anyone have any recommendations on course to take to learn this?

    Hello All,
    I am new to using the 2013 SharePoint and want to customize the site pages that was set up by someone else. The problem is when i click on the site pages I only see the option to upload and new. So the pages that have been uploaded in the past i clicked
    on them and when they come up it just shows the title of the site page with edit links button on the top.  
    So basically you are not able to do anything. Does anyone know if this is a permissions issue and if it is how do i give myself admin rights
    Nexusxox

    Hi,
    From your description, you want to know how to edit a page in SharePoint 2013.
    Go to the page->click Settings->Edit page,refer to the following screenshot:
    If a user want to edit a page, he at least have edit permissions.
    If you have any problems, please don't hesitate to let me know.
    Best Regards,
    Lisa Chen
    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 create custom content placeholder in sharepoint 2013

    Hi, I would like to create custom content placeholder don't know how to and add to my custom master page in sharepoint 2013. I have no luck searching on how to create custom content placeholder, any help?
    Thanks,
    Johnweb

    Hi,
    If you’re not fixed your requirement with the Out of the box SharePoint place holders, you can create as many as you want as long as the ID doesn’t conflict. On the master page add the content place holder 
    <asp:ContentPlaceHolderid="CustomName" runat="server"></asp:ContentPlaceHolder> and add this to your page layout
    <asp:Contentrunat="server" ContentPlaceHolderID="CustomName"></asp:Content>.
    I suggest you provide your basic requirement for further research.
    If you want to customize a master page, the Rajendra's method would be helpful.
    Best Regards,
    Dennis Guo
    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]

  • Why are the web pages of SharePoint 2013 so devoid of colour and distinct boundaries and leave screen space unutilized

    Hi All,
    This was a comment from my business users who have worked with various versions of SharePoint. I understand SP 2013 has put in logic to make the web pages to be compatible with a wider set of browsers and screen form factors. Nevertheless, the issues raised
    by my business users are valid.
    Comparing a basic web part page of SP 2013 with SP 2007 and 2010, their feedback was:
    SP 2013 pages do not have clear boundaries
    SP 2013 pages are generally devoid of colour. This is makes it harder to visually distinguish links from ordinary text.
    SP 2013 pages appear to leave large swathes of screen space underutilized.
    Thanks,
    Saurabh
    Web part page on SP 2007
    Web part page on SP 2013
    sdg

    Hi,             
    1. When insert a web part in SharePoint 2013, you can edit the web part and change the appearance and layout of the web part.                                                                           
    You can add the boundaries for the web part. (Edit page->select a web part ->edit the web part->in the appearance section->in Chrome Type, select title and border->after that you can see the boundaries).
    2. The color of the links depends on the theme you have selected in SharePoint 2013. Different themes set the different colors of the links. You also can customize the theme or composed look in SharePoint 2013.
    The article below is about how to create a SharePoint composed look.
    https://bniaulin.wordpress.com/2012/12/16/step-by-step-create-a-sharepoint-2013-composed-look/
    3. In SharePoint 2013, the space between different zones is set by default.
     The picture below is my page in SharePoint 2013.
    If there is much space between zones, to check:
    1. If input much space in web part in the SharePoint 2013.
    2. If input space in the web pert zone in SharePoint 2013.
    3. If the width has been changed in the below code in the page which you change the text layout.
    <table id="layoutsTable" style="width: 100%">
        <tbody>
            <tr style="vertical-align: top">
    <td style="width: 100%">
    <div style="width: 100%">
    <div>
    </div>
    </div>
    </td>
            </tr>
        </tbody>
    </table>                                                                                     
    The article below is about when you edit the page and choose one style of the text layout, some code will be added in page automatically.
    https://social.technet.microsoft.com/Forums/office/en-US/0422f5e0-4374-4bf5-b4d8-c4f8f970c865/sharepoint-wiki-page-text-layout-column-width?forum=sharepointcustomizationprevious
    If you want to Remove/Hide empty space between web parts, you can add css code in the content edit web part.
    The article below is about this issue.
    http://havivi.blogspot.in/2009/08/removehide-empty-space-between-web.html
    Best regards
    Sara Fan
    TechNet Community Support

  • How do I add multiple audio webparts to a page in SharePoint 2013?

    I need to add multiple media player webparts with audio files to a page in SharePoint 2013 so users can click the play button, listen to the file, then vote for the audio they like best. The problem is I can only get one audio to play at a time, and only
    in certain browsers. I can get them to work intermittently in a Chrome browser, but not IE 10. When I publish the page and click the play arrow, it played the first time. Then I added two more audio player webparts to the page, and linked them to different
    audio files (m4a and mpg). Now only one audio player will work, not the other 2.

    Hi
    Have you used this codeplex webpart
    https://mpwp.codeplex.com/
    Amit Kotha

  • How to hide the Columns and Views for Login user in SharePoint 2013

    Hi Friends,
    How to hide the Columns and Views for Login user in SharePoint 2013? Is it possible using OOB features? If not possible how can we hide the Columns and Views for Login user?
    Could you please help on this.
    Thanks,
    Tiru
    Tiru

    Hello Tirupal,
    There is no OOB way to do this.
    Please check this codeplex solution to achieve the same.
    https://sp2013columnpermission.codeplex.com/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Not able to Enable the Custom Ribbon button On Pages in Sharepoint 2013

    Hi Team,
    Not able to Enable the Custom Ribbon button On Pages in SharePoint 2013. we have used the button edit properties section of the Pages.
    Same is working for Lists but not for Pages.
    Thanks,
    Shrikant

    Thanks for your reply.
    Right now my server is not working to get the code. will share you in some time.
    I am just thinking if page get checked out and my control is also present in the Edit properties section then do I need to specify something explicitly to enable the button. The same is working for Lists.

  • Site Contents Page on SharePoint

    I am currently working on our new sharepoint site on Office 365. We now have a bunch of app tiles on the site contents page that aren't in a useful arrangement. Is there any way to manually arrange/organize these? 
    Thanks!

    check if this helps:
    http://www.idubbs.com/blog/2012/sharepoint-2013-promoted-links-app/
    If this helped you resolve your issue, please mark it Answered

  • Popularity Trends is disabled on Blog site page in SharePoint 2013?

    Hi, I have created 2 sub sites under a site collection: for one used Team Site template and for another one used Blog template.
    In blog sub site home page Popularity Trends is disabled while Team sub site home page Popularity Trends is enabled.
    Is page Popularity Trends disabled on Blog template in SharePoint 2013?

    I cannot say this for sure but I created a Blog site on my SP2013 instance and I can confirm the popularity trend is disabled. So this might be the case for Blog site template.
    As a workaround what I did was 
    1) Activated the publishing feature on the blog site
    2) Under Pages library created a new welcome page using Blank Web Part Page
    3) Now add all the web parts (apps) on this page i.e. Posts with Summary view, Blog tools, category, archive etc. Just so you know About this Blog is Content Editor Web Part.
    4) Save the page and this page should now have the the popularity trends.
    I do not know if there is any way to enable the popularity trends link for out of the box box site but if there is none then you can use the above workaround.
    Amit

  • Asking authentication window for annonymous users enable bi site when view dashboards or (deploy dashboards to view by anonymous users in sharepoint 2013 )

    Hi
    in sharepoint 2013 i created bi center site
    1) and i followed best practices from Technet for how to create Secure store service,performance Point service applications
    2) and added Unattended service account permissions in SSAS data sources,
    3) given db_owner permissions for performance point service  application pool account in content database.
    4) and my requirement is that deployed dashboards and pointers can be viewable by any users , who without login to
    sharepoint web application,
    so i enable anonymous access for whole web application and bi site.
    but even when i open bi dashboards without login  by view permission user, it asking authentication window.
    i open dashboard designer and deployed using spfarm user in sharepoint webfront end server.
    adil

    PerformancePoint generally does not support Anonymous access, as is the case when using Excel Services data connections:
    https://technet.microsoft.com/en-us/library/ff191193.aspx
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • View Directory Contents page by page(SOLVED)

    I'm trying to view the contents of /var/cache/pacman/pkg but the list goes by to fast to see the package names,is there anyway to view the packages page by page.I only ask because i had to reinstall arch and copy my backup package directory from my flash drive to /var/cache/pacman/pkg and i dont know the full name of a wvdial pkg im trying to install.THX
    Last edited by unilx (2010-12-03 20:34:37)

    urist wrote:Less is more than more. Less and more are more common than most, which isn't installed on most systems.
    Wouldn't that be;
    Less is more than most because less and more are more common that most (which isn't installed most systems???
    ( And thanks for the tip(s), I just ran into a similar problem myself)

  • Site stop working after saving as a template sharepoint 2013

    Hi
    pleas, your help is needed.
    I have 2 SC.
    my actions :
    1. save from SC "one" site as a template ( without content) > export  the template
    2. SC two > upload template > create new site from the template.
    problem :
    1. WF on both site dosent working
    2. when creating items and click on "save" form dosnt close in all existing lists
    can i fix it ? ? ?

    Hi Nikita,
    If the issue occurs to a customized form? Please check the link below and see if it could be solved manually:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/00be0d6a-f6a6-4709-b2af-6a822e55a461/how-to-close-the-custom-list-entry-form-when-click-save-button
    Regards,
    Rebecca Tu
    TechNet Community Support

  • OOTB Left Navigation error in Page Layout SharePoint 2013

    I created a SharePoint 2013 master page through Design Manager in Sharepoint 2013 and created a page layout like we do trough sharepoint designer as in sharepoint 2010 steps are below
    SharePoint Designer--->Page Layouts---->New Page Layout
    now i want to insert left navigation in the page layout ,i tried to insert the following snippet in the page layout 
    <div data-name="QuickLaunch">
                                        <!--CS: Start Vertical Navigation Snippet-->
                                        <!--SPM:<%@Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint,
    Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>-->
                                        <!--SPM:<%@Register Tagprefix="PublishingNavigation" Namespace="Microsoft.SharePoint.Publishing.Navigation"
    Assembly="Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>-->
                                        <div id="sideNavBox" class="ms-dialogHidden ms-forceWrap ms-noList">
                                            <!--MS:<SharePoint:AjaxDelta ID="DeltaPlaceHolderLeftNavBar" BlockElement="true" CssClass="ms-core-navigation"
    runat="server">-->
                                                <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderLeftNavBar" runat="server">-->
                                                    <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderLeftNavBarTop" runat="server">-->
                                                    <!--ME:</asp:ContentPlaceHolder>-->
                                                    <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderQuickLaunchTop" runat="server">-->
                                                    <!--ME:</asp:ContentPlaceHolder>-->
                                                    <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderLeftNavBarDataSource" runat="server">-->
                                                    <!--ME:</asp:ContentPlaceHolder>-->
                                                    <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderCalendarNavigator" runat="server">-->
                                                    <!--ME:</asp:ContentPlaceHolder>-->
                                                    <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderLeftActions" runat="server">-->
                                                    <!--ME:</asp:ContentPlaceHolder>-->
                                                    <!--MS:<SharePoint:SPNavigationManager ID="QuickLaunchNavigationManager"
    runat="server" QuickLaunchControlId="v4QuickLaunchMenu" ContainedControl="QuickLaunch" EnableViewState="false">-->
                                                        <!--MS:<SharePoint:DelegateControl runat="server" ControlId="QuickLaunchDataSource">-->
                                                            <!--MS:<Template_Controls>-->
                                                                <!--MS:<PublishingNavigation:PortalSiteMapDataSource
    runat="server" ID="SiteMapDS" SiteMapProvider="CurrentNavigation" EnableViewState="false" StartFromCurrentNode="true" ShowStartingNode="false" TrimNonCurrentTypes="Heading">-->
                                                                <!--ME:</PublishingNavigation:PortalSiteMapDataSource>-->
                                                            <!--ME:</Template_Controls>-->
                                                        <!--ME:</SharePoint:DelegateControl>-->
                                                        <!--MS:<SharePoint:AspMenu ID="V4QuickLaunchMenu" runat="server"
    EnableViewState="false" DataSourceId="QuickLaunchSiteMap" UseSimpleRendering="true" Orientation="Vertical" StaticDisplayLevels="3" AdjustForShowStartingNode="true" MaximumDynamicDisplayLevels="0"
    SkipLinkText="">-->
                                                        <!--ME:</SharePoint:AspMenu>-->
                                                    <!--ME:</SharePoint:SPNavigationManager>-->
                                                    <!--MS:<SharePoint:SPNavigationManager ID="TreeViewNavigationManagerV4" runat="server"
    ContainedControl="TreeView" CssClass="ms-tv-box">-->
                                                        <!--MS:<SharePoint:SPLinkButton runat="server" NavigateUrl="~site/{0}/viewlsts.aspx"
    ID="idNavLinkSiteHierarchyV4" Text="&#60;%$Resources:wss,treeview_header%&#62;" accesskey="&#60;%$Resources:wss,quiklnch_allcontent_AK%&#62;" CssClass="ms-tv-header">-->
                                                        <!--ME:</SharePoint:SPLinkButton>-->
                                                        <!--MS:<SharePoint:DelegateControl runat="server" ControlId="TreeViewAndDataSource">-->
                                                            <!--MS:<Template_Controls>-->
                                                                <!--MS:<SharePoint:SPHierarchyDataSourceControl
    runat="server" ID="TreeViewDataSourceV4" RootContextObject="Web" IncludeDiscussionFolders="true">-->
                                                                <!--ME:</SharePoint:SPHierarchyDataSourceControl>-->
                                                                <!--MS:<SharePoint:SPRememberScroll runat="server"
    ID="TreeViewRememberScrollV4" onscroll="javascript:_spRecordScrollPositions(this);" style="overflow: auto;">-->
                                                                    <!--MS:<SharePoint:SPTreeView
    ID="WebTreeViewV4" runat="server" ShowLines="false" DataSourceId="TreeViewDataSourceV4" ExpandDepth="0" SelectedNodeStyle-CssClass="ms-tv-selected" NodeStyle-CssClass="ms-tv-item" SkipLinkText=""
    NodeIndent="12" ExpandImageUrl="/{0}/images/tvclosed.png" ExpandImageUrlRtl="/{0}/images/tvclosedrtl.png" CollapseImageUrl="/{0}/images/tvopen.png" CollapseImageUrlRtl="/{0}/images/tvopenrtl.png" NoExpandImageUrl="/{0}/images/tvblank.gif">-->
                                                                    <!--ME:</SharePoint:SPTreeView>-->
                                                                <!--ME:</SharePoint:SPRememberScroll>-->
                                                            <!--ME:</Template_Controls>-->
                                                        <!--ME:</SharePoint:DelegateControl>-->
                                                    <!--ME:</SharePoint:SPNavigationManager>-->
                                                    <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderQuickLaunchBottom" runat="server">-->
                                                        <hr />
                                                        <!--MS:<SharePoint:ClusteredSPLinkButton ID="idNavLinkViewAllV4"
    runat="server" Permissions="ViewFormPages" NavigateUrl="~site/{0}/viewlsts.aspx" Text="&#60;%$Resources:wss,quiklnch_allcontent_short%&#62;" accesskey="&#60;%$Resources:wss,quiklnch_allcontent_AK%&#62;"
    CssClass="ms-core-listMenu-item">-->
                                                        <!--ME:</SharePoint:ClusteredSPLinkButton>-->
                                                    <!--ME:</asp:ContentPlaceHolder>-->
                                                <!--ME:</asp:ContentPlaceHolder>-->
                                            <!--ME:</SharePoint:AjaxDelta>-->
                                        </div>
                                        <!--CE: End Vertical Navigation Snippet-->
                                    </div>
    but i get the following error when i create page through this page layout
    "Content Place holders are only allowed in master page"
    Can anyone tell me how do i insert left navigation in page layout which is created through sharepoint designer (.aspx file) but master page is created through design manager

    Hi  ,
    As the error says, you need to  add Content Place holders to Mater Page not the Page Layout.
    For  inserting  left navigation, you can add Vertical Navigation SharePoint component to the master page using Snippets  manager:
    1.
    Open the site then click design manager link from right top corner "Settings".
    2.
    Click “Edit Master Pages” link.
    3.Click your custom mater page. It will open preview page.
    4.
    Once open the preview page then click Snippets menu from top right side. It will open “Snippet Gallery” in new tab page.
    5.
    Click the Vertical Navigation menu item in “DESIGN “tab.
    6.
    In this page we can easy to configure component properties.
    After customization must click the update button then only the changes are reflected in the component snippet.
    7.
    Once click the update button the HTML code automatically generated in the “HTML snippet” box and click “Copy to Clipboard” button.
    8.
    Open the mapped network drive then open the Mater Page HTML file and paste HTML snippet where you want the navigation to show.
    Reference:
    http://www.sharepointpals.com/post/Add-snippets-in-Page-layout-using-design-manager
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How to delete Content Source in Sharepoint 2013 Search Service

    I want to delete Default Content Source in Search
    Service in SharePoint 2013 but delete button is disable?Please see the below image. Content Source Type=SharePoint Sites
    How to do it?
    If In Content Source type=Files than delete button enables but
    not for the Content Source type=Sharepoint sites
    Vishal Goyal

    Hi,
    try to remove it using powershell
    $searchapp = Get-SPEnterpriseSearchServiceApplication "NameofSearchAPp"
    Remove-SPEnterpriseSearchCrawlContentSource -SearchApplication $searchapp -Identity "Name"\Regards
    Whenever you see a reply and if you think is helpful,Vote As Helpful! And whenever you see a reply being an answer to the question of the thread, click Mark As Answer

Maybe you are looking for

  • HELP!!!  Graphics Card Not Recognized in Windows 7

    Hey all, I'm running a 32 bit version of Windows 7 Ultimate on my 11.6" MacBook Air (Stats Below) and for a while every once in a while I would have to reboot Windows 7 to get it to recognize the GPU. Now it won't recognize it at all and I can only g

  • Vendor  extended  to Comp code

    Hi experts, What is meant by extending a vendor from one comp code to another  company code? How can we do that in PO?  Please tell me the steps. Thanks Dan

  • Error code -304155.

    Hi all,  Here's my problem: Error -304155 occurred at niLvFpga_Open_PXIe-7975R.vi Possible reason(s): FlexRIO: Downloading to the FPGA is not supported on this OS. Please use the RIO Device Setup utility to download your bitfile to the flash, and the

  • Unable to use Acrobat 8 as printer in windows 7 x64

    I recently upgrade from windows vista to 7.  Then I download all the Adobe patches up to 8.1.7.  Now, I cannot use PDF as printer when I am on a website or in other programs such as QB.

  • GetHashCode to find Doubles; Can you do it better?

    Hi guys! Last month i post a code of mine(The Full Code is here: http://social.technet.microsoft.com/Forums/it-IT/7acea85b-1d48-4b14-bd97-45c0603c8d64/powershell-basta-usare-un-po-di-logica-xd?forum=benvenutiofftopicit#365d668d-9ea6-4f72-8360-11ec760