Posts

Showing posts with the label SharePoint 2019

SharePoint Custom Access Denied Page

Creating a custom Access Denied page to match the site branding and client requirement is one of the requirement in most of the projects. In Microsoft SharePoint, it has a default Acess denied page. To customize and build our own Acess Denied page, follow the below steps. On the SharePoint server, navigate to : C:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\TEMPLATE\LAYOUTS Create new folder: UserCustomPages From the /Layouts folder, copy AccessSenied.aspx file paste into the new folder(UserCustomPages). Rename the file to customAccessDenied.aspx and modify it as per the requirement, save it. Open SharePoint management shell Execute below scripts: get-spcustomlayoutspage -webapplication "http://your-site-url" This will show the default Access denied page used. set-spcustomlayoutspage -Identity "AccessDenied" -RelativePath "/_layouts/15/UserCustomPages/customAccessDenied.aspx" -webapplication "http://your-site-url" Thi...

Create SharePoint Site Collection in a specific Content DB In SharePoint using PowerShell

As the SharePoint Central Administration doesn’t provide any interface to create a site collection with a nominated content database, we need to use PowerShell commands to create a site collection in a new content database for SharePoint on-premise. #Create a SharePoint New Content Database New-SPContentDatabase -name <<WSS_Content_DB_Name>> -webapplication <<http://Web_App_URL>> Create Site Collection in the previously created Content DB #Create a Site collection in the specific content database New-SPSite -Name "<<Site_Collection_name>>" -ContentDatabase <<WSS_Content_DB_Name>> -url <<Site_Collection_URL>> -OwnerAlias "domain\primary_Admin" -SecondaryOwnerAlias "domain\Secondary_admin" -Template "BLANKINTERNET#0" Here the template is the required site collection template. Some of the common template codes are below: Team Site: STS#0 Blank Site: STS#1 Wiki Site: WIKI#0 Blog: BLOG#0 App...

Announcing Availability of SharePoint Server 2019 Preview

Image
SharePoint Server 2019 Preview SharePoint Server 2019 represents a whole new generation of SharePoint.  SharePoint Server 2019 is built on the strong foundation of SharePoint Server 2016 – which continues to see great momentum in customer adoption.  SharePoint Server 2019 to be the same core platform for SharePoint Online as it is with SharePoint Server 2016, it should be no surprise that you see similarities between the two.  For you, SharePoint Server 2019 unlocks new, modern experiences for users, that are both intuitive and familiar.  For IT Professionals, improved performance and scale with simplified management, and for Developers an opportunity to build for cloud or on-premises – SharePoint Server 2019 embodies what the customers demand and what Microsoft will deliver.  This article is just a fraction of what will be in SharePoint 2019! What’s new in SharePoint Server 2019 Preview SharePoint Server 2019 Preview provides a  first lo...