SharePoint

SharePoint is a web-based collaborative platform that integrates with Microsoft Office. Launched in 2001, SharePoint is primarily sold as a document management and storage system, but the product is highly configurable and usage varies substantially between organizations.

SharePoint Server gets modern: SharePoint 2019 is here!

3
UPDATE 01/11/2018: SharePoint 2019 RTM was recently announced! To learn all about SharePoint 2019 and all its features, click here. SharePoint 2019 is finally here! It is still not the RTM version,...

How to install a SharePoint 2016 farm using PowerShell and AutoSPInstaller Step by Step...

6
This post is the second part of a two part step by step tutorial on how to install SharePoint 2016 in a fully automated way using PowerShell. To read the...

How to install a SharePoint 2016 farm using PowerShell and AutoSPInstaller Step by Step...

2
This post is the first part of a two part step by step tutorial on how to install SharePoint 2016 in a fully automated way using PowerShell. To read the...

Using KeywordQuery with CSOM SharePoint Online

2
string username = "***********"; string pwd = "*********"; string siteURL = "**********"; ClientContext context = new ClientContext(siteURL); Web web = context.Web; SecureString pass = new SecureString(); foreach (char c in pwd.ToCharArray()) pass.AppendChar(c); context.Credentials = new SharePointOnlineCredentials(username,...

Activating all Publishing Feature – Programmatically & Powershell – SharePoint 2010, 2013, 2016 &...

0
Hi Everyone!!! Today i will talk about Publishing Features!!! During this afternoon I was trying to activate Publishing Features but i wasn't having success because Page Library not was created...

SP Editor – Create and update SharePoint Online/SP2013/SP2016 css/js files, inject files to web,...

1
Hi Everyone!!! Today i will share a fantastic Google Chrome Extension that you can use on your developments on SharePoint. A Google Chrome Extension for creating and updating files (js, css),...

SharePoint Online – Internal Fields Names & how to use SPServices to get them!!!

2
Hi Everyone, Today i will show you how can you get internal field names in a SharePoint List Items. As you know SharePoint have two types of Names - Internal Name...

SharePoint – Get all alerts from a specific SP List/Library using Powershell

4
Hey Everyone!!! Today i will talk about List and Library Alerts and how can you get all Active alerts for a specific list using powershell script and how can you...

SharePoint – Using Flows on yours list items and documents

0
Hey Everyone!! Today i will talk about Flows!!! March 2017 bring us a new capabilities about integrating Flows with modern libraries, allowing you create interactive in document libraries and list!...

SharePoint Online – Storage Metrics – Monitor storage usage in your Site Collection

0
Hey Everyone!!! Today i will talk about Storage Metrics in your SharePoint Site Collection!!! Everyone knows what is the main feature on SharePoint that you could interact with and Structure of...