Creating App Catalog in Modern SharePoint Online

App catalog is a separate site collection like team sites in SharePoint for configuring and managing SharePoint Store and its setting. This site collection is basically used for deploying custom apps which are developed for internal organization and makes those custom apps available in SharePoint sites to users to browse as well as add it. Users can search the deployed or installed apps from site … Continue reading Creating App Catalog in Modern SharePoint Online

Restore list from Existing in Modern SharePoint Online

Recently, we have observed that save list as a template option is missing for Modern SharePoint Online site. Because of which many users are getting confuse on how to restore their existing list into another site which is mostly required and quite normal in terms of SharePoint. Save as s template was very handy option to copy list definition as well as to migrate it … Continue reading Restore list from Existing in Modern SharePoint Online

SharePoint | This page allows a limit of 200 controls, and that limit has been exceeded

While working with SharePoint Master page or Custom page design, we might face this error sometimes, “This page allows a limit of 200 controls, and that limit has been exceeded”. Cause for this error If you are using too many controls in single page (or master page), you will face this error because SharePoint web application allows 200 controls limit by default. This means, you … Continue reading SharePoint | This page allows a limit of 200 controls, and that limit has been exceeded

Office 365: Powershell Script to Uninstall the SharePoint App

Sometime O365 SharePoint Online will not allow uninstall app hosted. It will give you error as “Some things went wrong” or “Unable to Uninstall” and gives you message something like e-Discovery or retention polity contact Administrator. Such case if you try to deploy app using Visual Studio then you will get error: Script to Uninstall: [System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint.Client”) [System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint.Client.Runtime”) Function Get-ClientContext([string]$Url,[string]$UserName,[string]$Password) { $SecurePassword = $Password | ConvertTo-SecureString … Continue reading Office 365: Powershell Script to Uninstall the SharePoint App

Run Workflow for All Items of List in SharePoint

In some case we need to run workflow all items in List which is very panic work  via SharePoint GUI. We have to select list and run workflow manually for each item which is not effective if situation of more rows. Here we have small piece of cake in PowerShell command to accomplish the task but note this will not start instantly but in maximum … Continue reading Run Workflow for All Items of List in SharePoint