-
Recent Posts
- How to fix Azure Function App Deployment Error with Flex Plan and Storage Key Restrictions? October 30, 2025
- How to Authenticate and Query Azure Digital Twins using PowerShell? September 10, 2025
- How to Authenticate and Query Azure Digital Twins Using REST Client? September 10, 2025
- How to find the SharePoint Site is shared with “Everyone except external users”? May 29, 2025
- How to build Custom engagement hub channel for Copilot Studio? May 15, 2025
Recent Comments
Niro on How does the MS Graph “S… PC M on How does the MS Graph “S… Nikos Skatz on How to hide welcome message fo… VirEl on How to export Data Loss Preven… Arik on How to find all associated Pow… Archives
- October 2025
- September 2025
- May 2025
- October 2024
- June 2024
- May 2024
- April 2024
- January 2024
- October 2023
- August 2023
- July 2023
- June 2023
- May 2023
- February 2023
- January 2023
- December 2022
- October 2022
- September 2022
- August 2022
- July 2022
- June 2022
- April 2022
- March 2022
- February 2022
- January 2022
- December 2021
- November 2021
- September 2021
- August 2021
- July 2021
- June 2021
- April 2021
- February 2021
- December 2020
- November 2020
- October 2020
- September 2020
- August 2020
- July 2020
- June 2020
- May 2020
- April 2020
- March 2020
- February 2020
- October 2018
- April 2015
- February 2015
- January 2015
- December 2014
- November 2014
- June 2014
- March 2014
- January 2013
- October 2012
- September 2012
- August 2012
- July 2012
- May 2012
- April 2012
- February 2011
- December 2010
Categories
- Azure
- Build 2022
- Build 2023
- Build2020
- Cricket
- DLP
- Docker
- EntraID
- Exchange Online
- Facebook Developers Info
- FHIR
- Ignite2020
- MOSS 2007
- MS Graph
- PnP.PowerShell
- Power Apps
- Power Apps
- Power Automate
- powershell
- SharePoint
- SharePoint 2010
- SharePoint 2013
- Technical Stuff
- Uncategorized
- Windows 8.1
- Windows 8.1
Meta
Category Archives: Technical Stuff
How to send as a one email for multi people field in Power Automate?
Initial Setup Create a list ‘TestFlow’ with a Title and a People field SecondarySiteOwners. Note: Make sure you set the Allow multiple selection Create a Flow will the Item Added event trigger 1: Add an action to initialize a String … Continue reading
Posted in Power Automate
1 Comment
How to put a trigger condition to your trigger in Power Automate?
Problem Definition: Usually we have Triggers such as “Item Added or Modified” for a list or library. This is a first action in your workflow. Now assume that there is “WaveStatus” field in your list. You want a condition in … Continue reading
Posted in Power Automate
Leave a comment
How to do the SPFx CICD using GitHub Actions?
Summary Use following very simple steps to get any PnP SPFx web part or extensions to your tenant using Github Actions. I recommend use the following two links to get any sample code. https://aka.ms/spfx-webparts https://aka.ms/spfx-extensions Prerequisite is that you have … Continue reading
Posted in SharePoint
Leave a comment
How to add a file to SPO using REST API?
Here is the PowerShell code for it. Note: To get client id and secret use the following link. http://www.ktskumar.com/2017/01/access-sharepoint-online-using-postman/
Posted in SharePoint, SharePoint 2010, SharePoint 2013
1 Comment
Build 2020 Videos
SK100 Building modern enterprise-grade collaboration solutions with Microsoft Teams SK101 Transform everyday business processes with Microsoft 365 platform integrations SK102 What’s new with Microsoft Teams as a platform SK106 Tips for Teams developers: Authentication and proactive messaging SK107 Developing with … Continue reading
Posted in Build2020, Uncategorized
Leave a comment
How to get WssID for new taxonomy value in the REST Post call?
How to get WssID for new taxonomy value in the REST Post call? So I looked for this and I found various places to use CSOM or JavaScript way to get the WssId. But it is quite simple for the … Continue reading
Posted in SharePoint 2013
Leave a comment
How to navigate to ‘User Photos’ List on my site host?
If you are not aware that the user pictures are stored in the my-site host site collection. The pictures are stored in the ‘User Photos’ list’s folder named ‘Profile Pictures’. There will be three types of picture for an User … Continue reading
Posted in MOSS 2007, SharePoint, SharePoint 2010, SharePoint 2013
Leave a comment
Workaround for correctly retrieving Single select taxonomy field Label value via REST
Problem: I have list names “Experts” with a Metadata Column as ContosoLevel. When I retrieve the column via REST call I get only following in the response for the column. “ContosoLevel”:{“__metadata”:{“type”:”SP.Taxonomy.TaxonomyFieldValue”},“Label”:”1″,”TermGuid”:”47dd115d-7399-46d1-b985-205e499bbbdd”,”WssId”:1} I was expecting the Label field will have the … Continue reading
Posted in SharePoint 2010, SharePoint 2013
1 Comment
How to change default browser for debugging SharePoint 2013 Apps?
Answer: Basically create a dummy new ASP.NET Web application. Change the debug browser menu and run the app. Close the dummy app. Open your SharePoint 2013 App and you should have your browser changed. I don’t know why there is … Continue reading
Posted in SharePoint 2013
Leave a comment
Using UserPhoto.ASPX to get picture from User Profile Store
Problem ======= As you may know the User Profile Picture is stored in My Site Host site collection. The User Profile property PictureURL store the location of the picture. But the problem I ran in to is cross domain issue … Continue reading