Showing posts with label SharePoint 2016. Show all posts
Showing posts with label SharePoint 2016. Show all posts

Tuesday, January 17, 2017

16 Hive Folder in SharePoint 2016


In this article we will learn about the 16 hive folder in Microsoft SharePoint 2016. The 16 hive folder gets created while you install SharePoint 2016. It includes several important files to effectively support SharePoint.


Following is the location of 16 Hive folder –

C:\Program Files\Common files\Microsoft Shared\Web Server Extensions\16


ADMISAPI :

It includes Central Administration soap services. If this directory gets altered, remote site creation as well as all other methods that have been exposed in the service will function incorrectly.


Bin :

This directory includes all core binary files and utilities that are deployed by SharePoint Services.


Client :

This directory includes files used for creation of Office apps.


Config :

This directory includes files used for extending IIS Web sites with SharePoint Server. If in any case, any change is made in this directory or its contents, web application will malfunction.


GAC :

This folder contains following –

Microsoft.SharePoint.Client.Runtime.Portable.Resources.dll

Microsoft.SharePoint.Client.Runtime.Resources.DLL


HCCab :

This directory includes a complete set of cab files that includes content information deployed by SharePoint help system.


Help :

This folder contains the html help file (.chm) that is deployed by configuration wizard.


ISAPI :

This directory contains standard Web Services for SharePoint besides the resources & configuration files that are used by the web services.


Logs :

This folder provides all SharePoint related logs


Policy :

This directory includes Server policy files of SharePoint 2016


Resources :

This directory includes core.resx file that allows creating SharePoint language packs.


Template :

It includes core web site functionality such as configurations, features, templates, and entire resources of a web site.


UserCode :

This directory includes all files that are used for supporting sandbox solution.


Web Clients :

It contains files pertaining to Client Object Model.


Web Services :

This is the root directory for hosting SharePoint back-end Web services.

Tuesday, December 20, 2016

Set JSLink in List View using JavaScript Object Model (ECMA) Programming In SharePoint 2016 And Office 365




Steps:

  • Add Content Editor Web part (CEWP) to the SharePoint page.
  • Save the below script as a text file and upload it to Site Assets page.
  • Refer the script file from the CEWP.

Script:

<script language="javascript" type="text/javascript"
src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
 <script language="javascript" type="text/javascript">
 $(document).ready(function() {
 SP.SOD.executeFunc('sp.js', 'SP.ClientContext', setJSLink);
 });
var oView;
function setJSLink() {
 //Get the client context,web and list object
 var clientContext = new SP.ClientContext();
 var oWebsite = clientContext.get_web();
 var oList = oWebsite.get_lists().getByTitle('Products');
 //Get the view object and set the jsLink property
 oView = oList.get_views().getByTitle('CustomProductView');
 oView.set_jsLink("~site/siteassets/ListViewModification.js");
oView.update();
 //Load the client context and execute the batch
 clientContext.load(oView);
 clientContext.executeQueryAsync(QuerySuccess, QueryFailure);
}
function QuerySuccess() {
 console.log("JSLink has been set to the view.");
}
function QueryFailure(sender,args) {
 console.log('Request failed'+ args.get_message());
}
</script>

Tuesday, September 27, 2016

How to create team site or site collection in SharePoint 2016

Image

Now We have filled the title tab as "Team"

Image


Added Site Collection Administrator


Image 
 
If you want Secondary site collection ,added
 
Image 
 
Site collection Created
 
Image