TIP – Python Key Error on Traversing SharePoint List

SharePoint, with its powerful collaboration and document management capabilities, is widely used in various organizations. Python, being a versatile programming language, is often employed to interact with SharePoint data using APIs. However, traversing SharePoint lists can sometimes lead to a common stumbling block – the elusive Python KeyError. This error can be solved easily by…

Read SharePoint List to ADD and Remove members from AD Group

SharePoint, Microsoft’s powerful collaboration and document management platform, offers a wealth of capabilities for organizations to streamline their business processes. Today we will use SharePoint list together with PowerShell script to automate the process of adding and removing user from AD group. I will explain the process and provide you with sample script that you…

SharePoint Item Level Permissions

There can be situations when you have to provide item level permissions to one of the user on a list with hundred of items. This can be quite tedious with the manual approach so obviously Powershell will be the saver here 🙂 Sharing the script that will add itemlevel permissions: Input ot the script :…

SharePoint 2010 List Archiving/ Retention

Hi Readers, Recently during automation of one of the scenario, we required that items in SharePoint list are deleted after 90 days but the list should be archived as CSV to file share before removal. First part we can do via IRM but to accomplish both scenarios we have to do custom scripting, so again…