SharePoint Online – App Only Calls returning “System.Net.WebException: The remote server returned an error: (401) Unauthorized”
Recently I had an issue with a SharePoint Remote Event Receiver that was returning a 404 error. I had given correct permission in the appmanifest.xml. The clientcontext was being created with the following code: After digging around I discovered that newer SharePoint Online sites have app only permissions disabled. To enable it I ran the […]
Getting all events in a Calendar using Microsoft Graph and C#
I couldn’t find any examples online on how to get all events in a calendar programmatically using Microsoft Graph and C#. The only example I could find would return 10 items, being the page limit. In order to save others time, I decided to post the way I managed to do it, using Skip. This […]
Assigning task to related task
Assigning task to related task In my youtubo video, I demoed how you can create a Ticking and Tasking System using just SharePoint and PowerAutomate. You can view it here https://www.youtube.com/watch?v=hS6KzlcRfU0 I was asked how you could prevent a ticket being created if it was related to an already open ticket (Ie a reply or […]
Searching the SharePoint Recycling Bin
Searching the SharePoint Recycling Bin **UPDATE** SharePoint Advanced Recycling bin has been implemented into an easy to use Windows application ShareMaster. View it here: https://www.youtube.com/watch?v=PXcGJyapVqA While the SharePoint recycling bin is useful when it contains only a few items, it becomes downright unusable when it contains thousands of items. The SharePoint recycling bin is shipped […]
Checking if string is empty or null in MS Flow / Power automate
Below is a simple way to check if a string is null or empty in MS flow. It works by first testing if the string is null, and then checking if the string has 0 characters. Steps: Add a condition step Change the condition to OR Add the string variable, and first test to see […]
Updating Filename in MS Flow (Power automate)
Updating Filename in MS Flow (Power automate) This is a walk through on how to update a filename while keeping the same file extension in MS Flow. In this example we are going to assume the filename is saved in a Variable called “Full File Name”. The walkthrough will name a file to <filename>_1.<extension> We […]
SharePoint Online Vs SharePoint On-Premises
SharePoint Online Vs SharePoint On-Premises SharePoint online is a multitenant offering by Microsoft designed to meet the needs of most companies document management requirements. Technical documentation references huge capacity capabilities well beyond the scope of most SharePoint sites however real-world practical use does expose additional limitations. Performance The most prominent disadvantage of SharePoint online is form load times, […]
Mail Redirection & Scanning
The Team at SharePointPro are proud to support Gold Coast Local Business HotSnail.
Adding “Days since created” on a SharePoint column using JSON Custom Formatter
I wanted to add a column on a SharePoint modern experience list which showed the number of days since it was created. I also wanted to colour the dates so that if it was over a certain number of days it would display as yellow or red. I found very little examples online, so I […]