People Picker not Showing All Users from Active Directory Domain?

I installed and configured SharePoint in a sandbox. Everything works great, except the People Picker. The problem is that the People Picker didn’t show any user from the Active Directory. However, it showed me the users from my local sandbox. I verified and confirmed that the Sandbox is joined to the domain….

Read more

PowerShell Basics: Your Quick Reference Guide!

PowerShell has become one of the most pivotal technologies for IT professionals and system administrators working in the modern enterprise landscape. PowerShell allows you to easily automate repetitive tasks, improving overall productivity and providing more time to focus on higher-value tasks. Whether you manage on-premises Windows servers or cloud infrastructure on Azure,…

Read more

SharePoint Keeps Asking for Password Every time?

Yeah, It’s a classic issue! SharePoint prompts for user name and password, every time when a user tries to access SharePoint sites. Every time SharePoint 2010 (or MOSS 2007) keeps asking password is annoying, Isn’t it? Here’s is the solution to disable and stop the prompt for username and password:     In…

Read more

Disable Alerts from a SharePoint List or Library

The end-user came up with a requirement: Disable alerts from a particular SharePoint list, where 100’s of people subscribed already. Its apparent that we can disable alerts for web application either from Central Administration or executing the stsadm: stsadm -o setproperty -url https://server_name -pn alerts-enabled -pv false But here the requirement is…

Read more

How to Create User Control in SharePoint – Step-by-Step Walk through

User controls are a rapid way to develop custom functionality. There are three steps involved in creating user controls. This article walks through step by step on creating user controls in SharePoint 2010 which displays currently logged-in user. Create and deploy user control Register user control in the target Insert the user…

Read more

FileNotFoundException on new SPSite Call in SharePoint 2010

Today, I tried writing a console application to fetch some data from SharePoint for report generation. Started with simple code, Ran it, Boom! Error: “FileNotFoundException was unhandled” in spsite constructor!Verified that the URL is valid and able to access. In fact, my code was quite simple. SPSite site = new SPSite(“https://sharepoint”);Console.WriteLine(site.RootWeb.Title); Solution…

Read more