-
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: Uncategorized
Breeze & SharePoint 2013
Breeze is a cool framework to make REST calls from the client side. To better explain Andrew Connal’s blog explains in details http://www.andrewconnell.com/blog/getting-breezejs-to-work-with-the-sharepoint-2013-rest-api. The only problem is that it can not do the cross domain calls so the lists on … Continue reading
Posted in Uncategorized
Leave a comment
Hot Towel for Angular
John has done very good work to explain the Angular JS template App “Hot Towel” It provide all bits and pieces of the App template for the Angular JS http://www.johnpapa.net/hot-towel-angular/
Posted in Uncategorized
Leave a comment
Zurb Foundation
I just learnt the Zurb Foundation is great for the responsive UI design. http://foundation.zurb.com/ I have not used before but I will blog about the tips or tricks on Zurb
Posted in Uncategorized
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
Creating & Consuming OData Services in Microsoft technology
The following are two good urls which can give you all guidelines http://msdn.microsoft.com/en-us/data/odata.aspx This is very simple blog on code project. http://www.codeproject.com/Articles/393623/OData-Services
Posted in Uncategorized
Leave a comment
From SharePoint Creat field UI, How to provide InterName for the field?
A friend/colleague asked me this question. In the create field UI of SharePoint there is no Internal field input. How to assign internal field name? So here is the trick. 1. First create the field as you want for your … Continue reading
Posted in MOSS 2007, SharePoint 2010, Uncategorized
Leave a comment
Key cannot be null for AddFieldAsXml
I was using Office PnP library to create SPOField. I got “Key cannot be null” error. I checked all the options for the XML file. Finally this is the correct XML text worked for the call. Please note there should … Continue reading
Posted in Uncategorized
Leave a comment
Client Side Rendering (CSR) SharePoint 2013
CSR is way you can modify the List View for the List. For example if you want any columns to show different thatn OOB SharePoint Column, you can use the CSR to achieve the custom column rendering. I liked following … Continue reading
Posted in Uncategorized
Leave a comment
C# Powershell snapin not registering using installutil
Problem I used the sample from the following article to learn the custom PowerShell Snap In http://msdn.microsoft.com/en-us/magazine/cc163293.aspx I kept getting issue that the snap in was not registered. Solution The reason was I was not using the FrameWork64 directory InstallUtil.exe … Continue reading
Office PnP Powershell Commands
The Office PnP is located at https://github.com/OfficeDev/PnP I was doing bit of study of the “OfficeDevPnP.PowerShell.Commands” solution. I liked the idea of wrapping the CSOM calls in PowerShell Cmdlets. I tried most of the commands and it works well. I … Continue reading