The Application Metering UI only allows you to configure the AMAgent to send data either daily or weekly.
If you are looking at Application Metering in a lab or demonstarting it in a POC, you may wish to have the AMAgent send data more frequently.
This article describes the steps required to enable you to do this by modifying an aspx file.
1. Take a backup of the "path\Altiris\Inventory\Web\Metering\ApplicationMeteringPolicyConfigurationUI.aspx” file for rollback purposes.
2. Open the “ApplicationMeteringPolicyConfigurationUI.aspx” file in an XML Editor, like Notepad++.
3. Search for the following attributes, replacing Visible=”false” to Visible=”true”, and save the file when finished.
-chkClientSendSummary (checkbox)
- lblClientSendSummary (label)
- ddlSendSummaryFrequency (dropdown list)
(Sample code:
<td style="width: 33%">
<asp:CheckBox ID="chkClientSendSummary" runat="server" Visible="false"></asp:CheckBox>
<asp:Label ID="lblClientSendSummary" runat="server" Text="" Font-Size="11px" Visible="false"></asp:Label>
</td>
<td style="width: 77%" colspan="2">
<asp:DropDownList CssClass="ClsButton" ID="ddlSendSummaryFrequency" Font-Size="11px"
runat="server" Visible="false">
</asp:DropDownList>
</td>)
4. Perform an IISRESET
5. Open the SMP console and navigate to “Settings -> All Settings -> Discover and Inventory -> Inventory Solutions -> Application Metering Configuration” and adjust the “Client send summary data every:” interval.
If the above did not work, close the console, open the “C:\Windows\Microsoft.Net\Framework64\v2.0.50727\Temporary ASP.NET Files” directory, delete all files, and then reopen the console.
The following blog explains how to achieve the same goal via SQL:-