How to View Monthly Usage Summary Information
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 view monthly usage summary information, in Microsoft System Center Configuration Manager 2007, by using the SMS_MeteredFiles, SMS_MonthlyUsageSummary, SMS_MeteredUser and SMS_R_System classes.
Note
The metering data is only summarized at specified intervals (by default, daily at midnight). Metering data does not appear in the summarized data until the summarization task has run.
To view monthly usage summary information
Set up a connection to the SMS Provider.
Get all the metered files (SMS_MeteredFiles).
Get all the monthly file usage summary information (SMS_MonthlyUsageSummary).
Get all the metered users (SMS_MeteredUser).
Get all the computer names (SMS_R_System).
Loop through the collections, displaying information as required.
Example
The following example method displays file usages summary information by using the SMS_MeteredFiles and SMS_FileUsageSummary classes.
For information about calling the sample code, see Calling Configuration Manager Code Snippets.
Sub ViewMonthlySummary(connection)
' Get SMS_MeteredFiles - used to match FileID to a file name
' Build query to get all metered files.
meteredFilesQuery = "SELECT * FROM SMS_MeteredFiles"
' Run query.
Set meteredFiles = connection.ExecQuery(meteredFilesQuery, , wbemFlagForwardOnly Or wbemFlagReturnImmediately)
' Get SMS_MonthlyUsageSummary
' Build query to get all monthly summary information.
monthlyUsageSummaryQuery = "SELECT * FROM SMS_MonthlyUsageSummary"
' Run query.
Set monthlyUsageSummaries = connection.ExecQuery(monthlyUsageSummaryQuery, , wbemFlagForwardOnly Or wbemFlagReturnImmediately)
'Get SMS_MeteredUser
' Build query to get all metered users.
meteredUserQuery = "SELECT * FROM SMS_MeteredUser"
' Run query.
Set meteredUsers = connection.ExecQuery(meteredUserQuery, , wbemFlagForwardOnly Or wbemFlagReturnImmediately)
'Get computer names
' Build query to get all metered computers.
meteredComputerQuery = "SELECT * FROM SMS_R_System"
' Run query.
Set meteredComputers = connection.ExecQuery(meteredComputerQuery, , wbemFlagForwardOnly Or wbemFlagReturnImmediately)
For Each summary in monthlyUsageSummaries
For each meteredFile in meteredFiles
if meteredFile.MeteredFileID=summary.FileID then
wscript.echo "File Name:" & meteredFile.FileName
Exit For
end if
next
for each meteredUser in meteredUsers
if meteredUser.MeteredUserID=summary.MeteredUserID then
wscript.echo "User Name: " & meteredUser.FullName
Exit For
end if
next
wscript.echo "Usage Count:" & summary.UsageCount
wscript.echo "Terminal Service Usage Count:" & summary.TSUsageCount
for each computer in meteredComputers
if computer.ResourceId=summary.ResourceID then
wscript.echo "Computer:" & computer.Name
Exit For
end if
next
wscript.echo
Next
end sub
public void ViewMonthlySummaryInfo(WqlConnectionManager connection)
{
try
{
// Get SMS_MeteredFiles - used to match FileID to a file name.
// Build query to get all metered files.
string meteredFilesQuery = "SELECT * FROM SMS_MeteredFiles";
// Run meteredFiles query.
IResultObject meteredFiles = connection.QueryProcessor.ExecuteQuery(meteredFilesQuery);
// Get SMS_MonthlyUsageSummary.
// Build query to get all of the monthly file usage summary information.
string monthlyUsageSummaryQuery = "SELECT * FROM SMS_MonthlyUsageSummary";
// Run monthlyUsageSummaryQuery query.
IResultObject monthlyUsageSummaries = connection.QueryProcessor.ExecuteQuery(monthlyUsageSummaryQuery);
// Get SMS_MeteredUsers.
// Build query to get all of the metered users.
string meteredUserQuery = "SELECT * FROM SMS_MeteredUser";
// Run meteredUser query.
IResultObject meteredUsers = connection.QueryProcessor.ExecuteQuery(meteredUserQuery);
// Get computer names.
// Build query to get all the metered computers.
string meteredComputersQuery = "SELECT * FROM SMS_R_System";
// Run fileUsageSummary query.
IResultObject meteredComputers = connection.QueryProcessor.ExecuteQuery(meteredComputersQuery);
// Enumerate through the lists, outputs results as matches are found.
foreach (IResultObject summary in monthlyUsageSummaries)
{
foreach (IResultObject meteredFile in meteredFiles)
{
if (meteredFile["MeteredFileID"].StringValue == summary["FileID"].StringValue)
{
Console.WriteLine("File Name: " + meteredFile["FileName"].StringValue);
break;
};
};
foreach(IResultObject meteredUser in meteredUsers)
{
if (meteredUser["MeteredUserID"].StringValue == summary["MeteredUserID"].StringValue)
{
Console.WriteLine("User Name: " + meteredUser["FullName"].StringValue);
break;
}
};
Console.WriteLine("Usage Count: " + summary["UsageCount"].StringValue);
Console.WriteLine("Terminal Service Usage Count: " + summary["TSUsageCount"].StringValue);
foreach(IResultObject computer in meteredComputers)
{
if(computer["ResourceId"].StringValue == summary["ResourceID"].StringValue)
{
Console.WriteLine("Computer: " + computer["Name"].StringValue);
break;
}
};
//
Console.WriteLine(" ");
};
}
catch (SmsException ex)
{
Console.WriteLine("Failed. Error: " + ex.InnerException.Message);
throw;
}
}
The example method has the following parameters:
Parameter |
Type |
Description |
connection |
|
A valid connection to the SMS Provider. |
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
Reference
Concepts
System Center Configuration Manager Software Development Kit
Configuration Manager Software Metering
SMS_MeteredFiles Server WMI Class
SMS_MeteredUser Server WMI Class
SMS_MonthlyUsageSummary Server WMI Class
SMS_SummarizationInterval Server WMI Class