Dear all, the same way that you can Toggle the Developer Dashboard using STSADM.exe, you can also toggle it using PowerShell. It is slightly more complicated, but works just as fine and it’s also faster than the STSADM command. Let’s have a look: $service = [Microsoft.SharePoint.Administration.SPWebService]::ContentService $ddSettings =$service.DeveloperDashboardSettings $ddSettings.DisplayLevel = [Microsoft.SharePoint.Administration.SPDeveloperDashboardLevel]::OnDemand $ddSettings.Update() What it does, [...]
Posts Tagged ‘stsadm’
Toggle SharePoint Developer Dashboard using PowerShell
Posted in Configuration, Installation, PowerShell, Productivity, SharePoint 2010, tips, tagged Add-PSSnapin, Developer Dashboard, enable, PowerShell, SharePoint 2010, SPDeveloperDashboardLevel, stsadm, Toggle on July 8, 2011 | Leave a Comment »
Toggle SharePoint 2010 Developer Dashboard using STSADM
Posted in Automation, Configuration, PowerShell, Productivity, SharePoint 2010, SQL Server 2008, Troublshooting, Uncategorized, tagged bottleneck, Developer Dashboard, on demand, PowerShell, SharePoint 2010, sql server, stsadm, Toggle, tool on July 5, 2011 | 1 Comment »
Dear all, The developer dashboard is a very handy tool in Microsoft SharePoint Server 2010, when it comes to analyzing how your site is loading and finding potential bottlenecks. It displays information about databases, webservices, the current page itself and so on. You can see an example of the developer dashboard here. Once enabled, it [...]
Useful PowerShell Cmdlets for Configuring SharePoint Server 2010 – Cheat Sheet Part 1
Posted in Automation, Configuration, Installation, PowerShell, SharePoint 2010, tips, tagged build-in database, certificate, cmdlet, consume, content database, days retained, diagnostic logging, disk space used by site collection, Export, farm, health data collection, iisreset, mobile account, mobile account configuration, multiple site collections, PowerShell, publish, rbs, relationship, remote blob storage, service application, service application proxy group, SharePoint 2010, single server, site collection, sql server, sql server configuration manager, sql server management studio, stsadm, taxonomy, trust, usage data collection, visio services, web application on February 25, 2011 | Leave a Comment »
Dear all, Especially when starting out in configuring a freshly installed or upgraded SharePoint Server 2010, a lot of configuration tasks await you as an administrator or configurator. Some tasks can be carried out using PowerShell, some can only be carried out using the Central Administration, and some both. This post provides you with a [...]

