In this blog post, I will cover what is a workflow and how we can create a workflow using Microsoft Flow that can make HTTP REST calls to bring the stock price and then I will discuss how we can us...
|
Scenario:We know that Microsoft don't recommend any kind of load testing against SharePoint Online pages as mentioned here but still customers want to know how much time it takes to load a pag...
|
Microsoft introduced Office Graph a couple of months back which uses machine learning techniques to connect people to the relevant content, conversations and other people around them in Micros...
|
Scenario:Sub-site logo points to the sub-site's home page by default...and the requirement is to point it to the top level site's.Solution:We can not change Master Page in Office365/SharePoint...
|
"PSScriptAnalyzer is a static code checker for Windows PowerShell modules and scripts. PSScriptAnalyzer checks the quality of Windows PowerShell code by running a set of rules. The rules are based ...
|
SharePoint DesierState Configuration has Ben released.Url: https://github.com/PowerShell/SharePointDscWhile in pre-release mode it was called xSharePoint....
|
Scenario:Updating the Master Page for SharePoint Online is not recommended by Microsoft now.....fine. So how do we change the UI then? And the answer is...by injecting JavaScript and CSS.Solution:Y...
|
Scenario:Lets suppose we have two SharePoint 2013 site collections and we want to export a sub-site from one site collection to another using PowerShell, then below is the answe...
|
So I can create mobile apps for Office365 without writing any code using Microsoft Power Apps......This is Awesome.URL: https://powerapps.microsoft.com/en-us/tutorials/get-started-test-dr...
|
You can go to my previous post where I have explained how to implement responsive design in a SharePoint site using Bootstrap from scratch. Now we you will quickly figure out that implementing resp...
|
SharePoint Online pages are after all rendered as HTML/CSS and Java Script. In this post I will show how to create a responsive design for SharePoint Online pages using Bootstrap so that&...
|
Microsoft has released the new and improved features in SharePoint Server 2016 IT Preview. Check out the following link:https://technet.microsoft.com/en-us/library/mt346121(v=office.16).aspx...
|
SharePoint 2016 Preview is available to download now. Breaking: #SharePoint Server 2016 IT Preview and cloud hybrid search is here! Download now -> http://t.co/JCPzHQP3K9 pic.twitter.com/GDat7bv...
|
Content Type Hub is part of Managed Meta Data Service and was introduced into SharePoint to share the Content Types across the site collections and web applications. It was introduced in SharePoint...
|
I started exploring AzureML(Azure Machine Learning) few weeks back and quickly fell in love with its simplicity and robustness.I grabbed the sample data of Down Jones Index from UC Irvine Machine L...
|
You can find the whole API reference for Search REST API here. But when you have to do People Search then you need to put the context around your search Query and it will look like as follows:Norma...
|
<script type="text/javascript">var oReq = new ActiveXObject("MSXML2.XMLHTTP.3.0");function handler(){ if (oReq.readyState == 4 /* complete */) { if (oReq.status == 200) { ...
|
I had a requirement where I have to export user profile images from MySite 2013 and I end up writing following PowerShell script:[Reflection.Assembly]::LoadFile( `'C:\WINDOWS\Microsoft.NET\Framewor...
|
Following is an example of using Charts.js library to display nice graphs & charts after providing the data via C#/ASP.NET:Download and unzip the Charts.js javascript library and add the entire...
|
Scenario:I had a small requirement to hide left and top navigation from a SharePoint 2007 Publishing Site on just one page (not the whole site).Solution:Two line javascrpit :o) in a hidden Content ...
|
Here is an example of accessing XML data via PowerShell:Script:$xmlDocument = [xml] @"<catalog> <book id="101"> <author>Author1</author> <title>Title1</...
|
Following are few resources for migrating SharePoint 2010 Content Database to SharePoint 2013:SharePoint 2013 Upgrade Process http://www.microsoft.com/en-us/download/details.aspx?id=30371SharePoint...
|
Scenario:I was importing a CSV file with two columns (GPID, MemberOf) in a SSIS package when I found that GPID column might have null values and I don't need the entire row in my output if the GPID...
|
Scenario:I had a scenario where I will get the AD export in CSV format with two columns (samaccountname, GUID) and I had to check if the GUID is null then put the value "0" instead of null value.So...
|
I have to write this script recenely to export user and their few properties via PowerShell. Import-Module ActiveDirectory$ADGroup = "GroupName"write-host "Accessing all users from group:" $ADGroup...
|
Yup...Real work happens here....
|
Scenario: Recently support team at my client found out that for some reason too many links (more than 1000) got created under a heading node in the Global Navigation in one of our SharePoint 2007 ...
|
Scenario:One of my colleague wanted to activate the Content Approval on a couple of lists and libraries within a site and we know that going to the settings of 25 libraries for the same setting is ...
|
JSON is better to handle than XML. Was using it in a project so thought to post here,<div id="dvResult">Loading...</div><script>var data = [ {"firstName":"Michael","lastName":"...
|
Description:Following powershell reads the list of site collections from the file and deleted them:Add-PSSnapin "Microsoft.SharePoint.PowerShell"function WriteLog{ Param([string]$message, [strin...
|
And that's how you get all the claims for a user programmatically in .NET. Almost similar to my older post: public void GetClaims(){ System.Security.Principal.IPrincipal ipl = System.Web.H...
|
I use this javascript function in every other project and every time I have to go to the internet and search for it. I am just too lazy to look and copy it from the old projects. So I am copyi...
|
Input No. of Trials (n): Probability of Success (p): Ref: http://harvardx.harvard.edu/news/harvardx-interactive-learning-chal...
|
I am providing following training to people who want to learn SharePoint Development.Please comment on this post for your questions. Module I - Introduction to SharePoint (8 hr)What is a CMS?Micros...
|
In my recent project I have used JWPlayer to play videos in a SharePoint portal and it works great. Here is the demo: Loading the player... jwplayer("myElement").setup({ file: "http://p...
|
Taxonomy (Managed Metadata)According to Microsoft Technet, A taxonomy is a formal classification system. A taxonomy groups the words, labels, and terms that describe something, and then arranges th...
|
I got an email today that I have been featured at SharePoint Community website......SWEEEEEEEEEEET.Btw SharePoint Community is one of the largest online communities for SharePoint professional...
|
Description:This PowerShell script will take two input files Users.csv (with all the user names under USERID column) and Properties.csv (with all the properties under TITLE column) and delete the v...
|
Background:Business intelligence (BI) is a set of theories, methodologies, architectures, and technologies that transform raw data into meaningful and useful information for business purposes. Shar...
|