In this post we will discuss how we can enable or disable developer dashboard in SharePoint 2013.
You can check this article and this article to know more about SharePoint 2010 developer dashboard.
Also you can check what is new in developer dashboard in SharePoint 2013.
You can use PowerShell command to enable to disable developer dashboard:
PowerShell command to enable developer dashboard:
$content = ([Microsoft.SharePoint.Administration.SPWebService]::ContentService)
$appsetting = $content.DeveloperDashboardSettings
$appsetting.DisplayLevel =
[Microsoft.SharePoint.Administration.SPDeveloperDashboardLevel]::On
$appsetting.Update()
PowerShell command to enable developer dashboard:
$content = ([Microsoft.SharePoint.Administration.SPWebService]::ContentService)
$appsetting = $content.DeveloperDashboardSettings
$appsetting.DisplayLevel =
[Microsoft.SharePoint.Administration.SPDeveloperDashboardLevel]::Off
$appsetting.Update()
Source URL here.
http://mmman.itgroove.net/2012/12/sharepoint-2013-developer-dashboard/
You can check this article and this article to know more about SharePoint 2010 developer dashboard.
You can use PowerShell command to enable to disable developer dashboard:
PowerShell command to enable developer dashboard:
$content = ([Microsoft.SharePoint.Administration.SPWebService]::ContentService)
$appsetting = $content.DeveloperDashboardSettings
$appsetting.DisplayLevel =
[Microsoft.SharePoint.Administration.SPDeveloperDashboardLevel]::On
$appsetting.Update()
PowerShell command to enable developer dashboard:
$content = ([Microsoft.SharePoint.Administration.SPWebService]::ContentService)
$appsetting = $content.DeveloperDashboardSettings
$appsetting.DisplayLevel =
[Microsoft.SharePoint.Administration.SPDeveloperDashboardLevel]::Off
$appsetting.Update()
Source URL here.
http://mmman.itgroove.net/2012/12/sharepoint-2013-developer-dashboard/