How to Create a Dashboard
Applies To: System Center Configuration Manager 2007, System Center Configuration Manager 2007 R2, System Center Configuration Manager 2007 R3, System Center Configuration Manager 2007 SP1, System Center Configuration Manager 2007 SP2
You create a custom dashboard, in Microsoft System Center Configuration Manager 2007, by creating an instance of the SMS_ReportDashboard class and populating the properties.
To create a dashboard
Set up a connection to the SMS Provider.
Create the new dashboard using the SMS_ReportDashboard class.
Populate the new dashboard properties.
Save the new dashboard and properties.
Example
The following example method shows how to create a custom dashboard by creating an instance of the SMS_ReportDashboard class and populating the properties.
For information about calling the sample code, see Calling Configuration Manager Code Snippets.
Sub CreateDashboard(connection, _
newDashboardName, _
newColumnCount, _
newRowVerticalLimit)
' Create the new dashboard object.
Set newDashboard = connection.Get("SMS_ReportDashboard").SpawnInstance_
' Populate the new dashboard properties.
newDashboard.Name = newDashboardName
newDashboard.ColumnCount = newColumnCount
newDashboard.RowVerticalLimit = newRowVerticalLimit
' Save the new dashboard and properties.
newDashboard.Put_
' Output the dashboard name.
Wscript.Echo "Created new dashboard: " & newDashboardName
End Sub
public void CreateDashboard(WqlConnectionManager connection,
string newDashboardName,
string newColumnCount,
string newRowVerticalLimit)
{
try
{
// Create new dashboard object.
IResultObject newDashboard = connection.CreateInstance("SMS_ReportDashboard");
// Populate new dashboard properties.
newDashboard["Name"].StringValue = newDashboardName;
newDashboard["ColumnCount"].StringValue = newColumnCount;
newDashboard["RowVerticalLimit"].StringValue = newRowVerticalLimit;
// Save the new dashboard and new dashboard properties.
newDashboard.Put();
// Output the new dashboard name.
Console.WriteLine("Created dashboard: " + newDashboardName);
}
catch (SmsException ex)
{
Console.WriteLine("Failed to create dashboard. Error: " + ex.Message);
throw;
}
}
The example method has the following parameters:
Parameter |
Type |
Description |
Connection |
|
A valid connection to the SMS Provider. |
newDashboardName |
|
A string indicating the name of the new dashboard. |
newColumnCount |
|
The number of reports tiled horizontally across the dashboard. |
newRowVerticalLimit |
|
Vertical height, in pixels, of a tiled dashboard row. Set this property to null if there is no limit. |
Compiling the Code
This C# example requires:
Namespaces
System
System.Collections.Generic
System.Text
Microsoft.ConfigurationManagement.ManagementProvider
Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine
Assembly
adminui.wqlqueryengine
microsoft.configurationmanagement.managementprovider
Robust Programming
For more information about error handling, see About Configuration Manager Errors.
Security
For more information about securing Configuration Manager applications, see Securing Configuration Manager Applications.
See Also
Concepts
System Center Configuration Manager Software Development Kit
Configuration Manager Reporting
SMS_ReportDashboard Server WMI Class