Condividi tramite


Come configurare l'individuazione heartbeat

In Configuration Manager si configurano le impostazioni di Individuazione heartbeat modificando le impostazioni del file di controllo del sito necessarie.

Per configurare l'individuazione heartbeat

  1. Configurare una connessione al provider SMS.

  2. Stabilire una connessione alla sezione Individuazione heartbeat del file di controllo del sito usando la SMS_SCI_Component classe .

  3. Loop tramite la matrice di proprietà disponibili, apportando modifiche in base alle esigenze.

  4. Eseguire il commit delle modifiche apportate al file di controllo del sito.

Esempio

Nell'esempio seguente vengono impostate le impostazioni di individuazione heartbeat usando la SMS_SCI_Component classe per connettersi al file di controllo del sito e modificare le proprietà.

Per informazioni sulla chiamata del codice di esempio, vedere Chiamata di frammenti di codice Configuration Manager.


Sub ConfigureHeartbeatDiscoverySettings1(swbemServices,                       _
                                         swbemContext,                        _
                                         siteCode,                            _
                                         serverName,                          _
                                         newHeartbeatSiteControlFileSchedule)

    ' Load site control file and get the SMS_SITE_CONTROL_MANAGER section.
    swbemServices.ExecMethod "SMS_SiteControlFile.Filetype=1,Sitecode=""" & siteCode & """", "Refresh", , , swbemContext

    Query = "SELECT * FROM SMS_SCI_Component " &                         _
    "WHERE ItemName = 'SMS_SITE_CONTROL_MANAGER|" & serverName & "' " &  _
    "AND SiteCode = '" & siteCode & "'"

    ' Get the SMS Software Update Point properties.
    Set SCIComponentSet = swbemServices.ExecQuery(Query, ,wbemFlagForwardOnly Or wbemFlagReturnImmediately, swbemContext)

    ' Only one instance is returned from the query.
    For Each SCIComponent In SCIComponentSet

        ' Display the server name.
        wscript.echo "Server: " & SCIComponent.Name

        ' Loop through the array of embedded SMS_EmbeddedProperty instances.
        For Each vProperty In SCIComponent.Props

            ' Setting: Heartbeat Site Control File Schedule.
            If vProperty.PropertyName = "Heartbeat Site Control File Schedule" Then
                wscript.echo " "
                wscript.echo vProperty.PropertyName
                wscript.echo "Current value " &  vProperty.Value1

                'Modify the value.
                vProperty.Value1 = newHeartbeatSiteControlFileSchedule
                wscript.echo "New value " & newHeartbeatSiteControlFileSchedule
            End If

         Next

         ' Update the component in your copy of the site control file. Get the path
         ' to the updated object, which could be used later to retrieve the instance.
          Set SCICompPath = SCIComponent.Put_(wbemChangeFlagUpdateOnly, swbemContext)

    Next

    ' Commit the change to the actual site control file.
    Set InParams = swbemServices.Get("SMS_SiteControlFile").Methods_("CommitSCF").InParameters.SpawnInstance_
    InParams.SiteCode = siteCode
    swbemServices.ExecMethod "SMS_SiteControlFile", "CommitSCF", InParams, , swbemContext

End Sub

' SEPARATE EXAMPLE TO ENABLE HEARTBEAT DISCOVERY ON THE CLIENT
Sub ConfigureHeartbeatDiscoverySettings2(swbemServices,                       _
                                         swbemContext,                        _
                                         siteCode,                            _
                                         enableDisableHeartbeatDDR)

    ' Load site control file and get the SMS_SCI_ClientConfig section.
    swbemServices.ExecMethod "SMS_SiteControlFile.Filetype=1,Sitecode=""" & siteCode & """", "Refresh", , , swbemContext

    Query = "SELECT * FROM SMS_SCI_ClientConfig " &   _
    "WHERE ItemName  = 'Client Properties'" & _
    "AND SiteCode = '" & siteCode & "'"

     Set SCIComponentSet = swbemServices.ExecQuery(Query, ,wbemFlagForwardOnly Or wbemFlagReturnImmediately, swbemContext)

    ' Only one instance is returned from the query.
    For Each SCIComponent In SCIComponentSet

        'Loop through the array of embedded SMS_EmbeddedProperty instances.
        For Each vProperty In SCIComponent.Props

            ' Setting: Enable Heartbeat DDR
            If vProperty.PropertyName = "Enable Heartbeat DDR" Then
                wscript.echo " "
                wscript.echo vProperty.PropertyName
                wscript.echo "Current value " &  vProperty.Value

                'Modify the value.
                vProperty.Value = enableDisableHeartbeatDDR
                wscript.echo "New value " & enableDisableHeartbeatDDR
            End If

        Next

        ' Update the component in your copy of the site control file. Get the path
        ' to the updated object, which could be used later to retrieve the instance.
        Set SCICompPath = SCIComponent.Put_(wbemChangeFlagUpdateOnly, swbemContext)

    Next

    ' Commit the change to the actual site control file.
    Set InParams = swbemServices.Get("SMS_SiteControlFile").Methods_("CommitSCF").InParameters.SpawnInstance_
    InParams.SiteCode = siteCode
    swbemServices.ExecMethod "SMS_SiteControlFile", "CommitSCF", InParams, , swbemContext

End Sub


public void ConfigureHeartbeatDiscoverySettings(WqlConnectionManager connection,
                                                string siteCode,
                                                string serverName,
                                                string newHeartbeatSiteControlFileSchedule,
                                                string newEnableDisableHeartbeatDDR)
{

    try
    {
    // Change the Heartbeat Site Control File Schedule value.

        // Connect to SMS_SITE_CONTROL_MANAGER section of the site control file.
         IResultObject siteDefinition = connection.GetInstance(@"SMS_SCI_Component.FileType=2,ItemType='Component',SiteCode='" + siteCode + "',ItemName='SMS_SITE_CONTROL_MANAGER|" + serverName + "'");

        // Temporary copy of the embedded properties.
        Dictionary<string, IResultObject> embeddedProperties = siteDefinition.EmbeddedProperties;

        foreach (KeyValuePair<string, IResultObject> kvp in siteDefinition.EmbeddedProperties)
        {
            // Property: Heartbeat Site Control File Schedule
            if (kvp.Value.PropertyList["PropertyName"] == "Heartbeat Site Control File Schedule")
            {
                Console.WriteLine();
                Console.WriteLine(kvp.Value.PropertyList["PropertyName"]);
                Console.WriteLine("Current value: " + embeddedProperties["Heartbeat Site Control File Schedule"]["Value1"].StringValue);

                embeddedProperties["Heartbeat Site Control File Schedule"]["Value1"].StringValue = newHeartbeatSiteControlFileSchedule;
                Console.WriteLine("New value    : " + newHeartbeatSiteControlFileSchedule);
            }
        }

        // Store the settings that have changed.
        siteDefinition.EmbeddedProperties = embeddedProperties;

        // Save the settings.
        siteDefinition.Put();

    }
    catch (SmsException ex)
    {
        Console.WriteLine();
        Console.WriteLine("Failed. Error: " + ex.InnerException.Message);
    }

    try
    {
    // Change the Enable Heartbeat DDR value.

        // Connect to SMS_SCI_ClientConfig section of the site control file.
    IResultObject siteDefinition = connection.GetInstance(@"SMS_SCI_ClientConfig.FileType=2,ItemType='Client Configuration',SiteCode='" + siteCode + "',ItemName='Client Properties'");

        // Create temporary working copy of embedded properties.
        Dictionary<string, IResultObject> embeddedProperties = siteDefinition.EmbeddedProperties;

        foreach (KeyValuePair<string, IResultObject> kvp in siteDefinition.EmbeddedProperties)
        {
            // Setting: Enable Heartbeat DDR
            if (kvp.Value.PropertyList["PropertyName"] == "Enable Heartbeat DDR")
            {
                Console.WriteLine();
                Console.WriteLine(kvp.Value.PropertyList["PropertyName"]);
                Console.WriteLine("Current value: " + kvp.Value.PropertyList["Value"]);

                // Change value using the newEnableDisableHeartbeatDDR value passed in.
                embeddedProperties["Enable Heartbeat DDR"]["Value"].StringValue = newEnableDisableHeartbeatDDR;
                Console.WriteLine("New value    : " + newEnableDisableHeartbeatDDR);
            }
        }

        // Store the settings that have changed.
        siteDefinition.EmbeddedProperties = embeddedProperties;

        // Save the settings.
        siteDefinition.Put();
    }

    catch (SmsException ex)
    {
        Console.WriteLine("Failed. Error: " + ex.InnerException.Message);
        throw;
    }

}

Il metodo di esempio include i parametri seguenti:

Parametro Tipo Descrizione
- connection
- swbemServices
-Gestito: WqlConnectionManager
- VBScript: SWbemServices
Connessione valida al provider SMS.
swbemContext - VBScript: SWbemContext Oggetto di contesto valido. Per altre informazioni, vedere Come aggiungere un qualificatore di contesto Configuration Manager usando WMI.
siteCode -Gestito: String
- VBScript: String
Codice del sito.
serverName -Gestito: String
- VBScript: String
Nome del server.
newHeartbeatSiteControlFileSchedule -Gestito: String
- VBScript: String
Pianificazione che definisce la frequenza con cui il client produrrà record di individuazione dati heartbeat .
- newEnableDisableHeartbeatDDR
- enableDisableHeartbeatDDR
-Gestito: String
- VBScript: String
Valore per abilitare o disabilitare il DDR heartbeat.

Disabilitato - 0

Abilitato - 1

Compilazione del codice

Questo esempio C# richiede:

Spazi dei nomi

Sistema

System.Collections.Generic

System.Text

Microsoft.ConfigurationManagement.ManagementProvider

Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine

Assembly

adminui.wqlqueryengine

microsoft.configurationmanagement.managementprovider

Programmazione efficiente

Per altre informazioni sulla gestione degli errori, vedere Informazioni sugli errori di Configuration Manager.

Sicurezza di .NET Framework

Per altre informazioni sulla protezione delle applicazioni Configuration Manager, vedere Configuration Manager'amministrazione basata sui ruoli.

Vedere anche

Informazioni sul file di controllo del sito Configuration ManagerCome leggere e scrivere nel file di controllo del sito di Configuration Manager tramite codice gestitoCome leggere e scrivere nel file di controllo del sito Configuration Manager usando wmi SMS_SCI_Component server WMI ClassAbout schedules (Informazioni sulle pianificazioni)Come creare un token di pianificazione