Seeing many people eager to install SQL Server 2014 SP1, gave me the perfect opportunity to post an article on “Installation of SQL Server 2014 SP1”. Go through the “below–mentioned” steps for installing SQL Server 2014. I have performed these steps for configuring the SharePoint 2016. Please extract the software and run the setup.exe as “Run as administrator” 2. Click […]
Installation of SQL Server 2014 SP1
How to inject javascript to SharePoint or Office 365 master pages using CSOM
In office 365 environment, Microsoft had suggested not to modify the master pages. So to avoid modification, we can inject JavaScript at run time to the Master Pages of Office 365. This can be accomplished using the below CSOM Code (concocted by our Offshore SharePoint Developers) in any provider hosted model app development. Fundamentally we are creating Custom Action at […]
How to get users from nested AD groups in SharePoint
As we know we can assign permission to specific AD groups from SharePoint workspace. So all users presents in that specific AD groups can get permission to SharePoint sites based on the permission defined to this AD groups in SharePoint sites. If this AD group is a nested AD group then also all users present in all nested groups can have the permission […]
How to Import Managed Metadata into SharePoint
Managed metadata is a hierarchical collection of centrally managed terms that you can define, and then use as attributes for items in SharePoint Server 2013. You can use the Term Store management tool to create terms in a term set, or manage a term such as copy it or move it. If you have many terms that you want to […]
Office 365 SharePoint Online Management Shell
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 […]
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 […]