SharePoint online which is a subset of Office 365 has come up with SharePoint Online Management Shell to run administrative commands from the command line. These cmdlets will help manage SharePoint Online users and sites. SharePoint Online Management Shell is a Windows PowerShell module. NOTE: To use cmdlets, a SharePoint Online site administrator must be a global administrator in Office […]
Office 365 SharePoint Online Management Shell
Deprecated/Removed features from SharePoint Server 2016
SharePoint Foundation: The free to use edition of SharePoint will no longer be a part of the Share Point 2016 suite. SharePoint foundation was a minimal SharePoint product which lacked enterprise features. Standalone Install Mode: SharePoint 2016 cannot be installed in standalone mode. You will have to choose one of the 6 Mini Roles available during the configuration phase. The […]
Manage Business Data with Microsoft SharePoint
With the introduction of the Internet, business entrepreneurs have started using platform to store and manage their relevant business files. Today, the working processes of the majority of organizations all over the world depend upon the effective use of software products and web- based solutions designed for specific business purposes. If you are looking for a platform to manage your […]
What a Professional Sharepoint Developer Will Bring To Your Business
Maintain a business organization isn’t a simple task as there ’re many things that you have to take into account such as people, business documents, structure, sales, profits, legal documents, and so on. To efficiently manage the whole thing, organizations require software that can effortlessly control the expenses and decrease risk that’s concerned with IT. Credits to Microsoft’s SharePoint that […]
Seven Tips For Choosing An Offshore SharePoint Consultant
Before boarding on a consultant’s assessment journey a company must 1st evaluate its requirements & business priorities. Relying upon whether a company likes to offshore a SharePoint site in-house, a company should work out appropriate due diligence prior to choosing an apposite sharepoint consultant 2016 for constructing a SharePoint site. For small-sized business it’d be sensible to employ a local […]
Add HyperLink programmatically in WPF.
[code lang=”c”] Label linkLabel = new Label(); Run linkText = new Run(“(” + displayName+ “)”); Hyperlink link = new Hyperlink(linkText); link.NavigateUri = new Uri(“http://url”); link.RequestNavigate += new RequestNavigateEventHandler(delegate (object sender, RequestNavigateEventArgs e) { Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri)); e.Handled = true; }); linkLabel.Content = link; [/code]
Get all SharePoint site users using Client object model
[code lang=”c”] class Program { static void Main(string[] args) { using (ClientContext ctx = new ClientContext(“http://siteUrl”)) { NetworkCredential netCredentials = new NetworkCredential(“userName”, “password”); ctx.Credentials = netCredentials; try { Web web = null; web = ctx.Web; RoleAssignmentCollection assignColl; RoleAssignment roleAssign; RoleDefinitionBindingCollection bindingColl; ctx.Load(web.RoleAssignments, roles => roles.Include( r => r.Member, r => r.Member.LoginName, r => r.Member.Title, r => r.RoleDefinitionBindings )); ctx.ExecuteQuery(); assignColl […]
Get all SharePoint site users using Client object model
class Program { static void Main(string[] args) { using (ClientContext ctx = new ClientContext(“http://siteUrl”)) { NetworkCredential netCredentials = new NetworkCredential(“UserName”, “Password”); ctx.Credentials = netCredentials; try { Web web = null; web = ctx.Web; RoleAssignmentCollection assignColl; RoleAssignment roleAssign; ctx.Load(web.RoleAssignments, roles => roles.Include( r => r.Member, r => r.Member.LoginName, r => r.Member.Title )); ctx.ExecuteQuery(); assignColl = web.RoleAssignments; for (int isitePermCount = 0; […]
Add or Remove permission level to SharePoint group or user programmatically.
[code lang=”c”] Below code describes how to add/remove permission level to user programmatically using client object model. class Program { static void Main(string[] args) { using (ClientContext ctx = new ClientContext(“http://siteUrl”)) { NetworkCredential netCredentials = new NetworkCredential(“userName”, “password”); ctx.Credentials = netCredentials; try { Web web = null; web = ctx.Web; RoleAssignmentCollection assignColl; RoleAssignment roleAssign; string userOrGroup = “Administrator”; //we can […]
Determine SharePoint server version using Client object model
Get SharePoint server version using client object model. To determine which version of SharePoint you are currently using, by client side object model Example:- [code lang=”c”] Class Program { static void Main(string[] args) { using (ClientContext ctx = new ClientContext(“siteUrl”)) { string version = string.Empty; ctx.ExecuteQuery(); version = ctx.ServerVersion.ToString(); if (version.StartsWith(“14.”)) version = “SharePoint2010”; else if (version.StartsWith(“15.”)) version = “SharePoint2013”; […]
