Nota
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare ad accedere o modificare le directory.
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare a modificare le directory.
Start-SilAggregator
Starts the Software Inventory Logging Aggregator.
Sintassi
Parameter Set: Default
Start-SilAggregator [-Force] [-HostPollIntervalInHours <Int32> ] [-PollStartTime <DateTime> ] [-Confirm] [-WhatIf] [ <CommonParameters>]
Descrizione dettagliata
The Start-SilAggregator cmdlet starts the Software Inventory Logging Aggregator. This cmdlet also sets values for polling start time and host polling interval.
Parametri
-Force
Forza l'esecuzione del comando senza chiedere conferma all'utente.
Alias |
none |
Obbligatorio? |
false |
Posizione? |
named |
Valore predefinito |
none |
Accettare l'input della pipeline? |
false |
Accetta caratteri jolly? |
false |
-HostPollIntervalInHours<Int32>
Specifies the polling interval in hours. I valori accettabili per questo parametro sono: integers from 1 to 168. A value of 168 is once per week.
Alias |
none |
Obbligatorio? |
false |
Posizione? |
named |
Valore predefinito |
none |
Accettare l'input della pipeline? |
false |
Accetta caratteri jolly? |
false |
-PollStartTime<DateTime>
Specifies the polling start date and time, at least one hour in the future.
Alias |
none |
Obbligatorio? |
false |
Posizione? |
named |
Valore predefinito |
none |
Accettare l'input della pipeline? |
false |
Accetta caratteri jolly? |
false |
-Confirm
Richiede una conferma prima dell'esecuzione del cmdlet.
Obbligatorio? |
false |
Posizione? |
named |
Valore predefinito |
false |
Accettare l'input della pipeline? |
false |
Accetta caratteri jolly? |
false |
-WhatIf
Mostra che cosa succede se viene eseguito il cmdlet. Il cmdlet non viene eseguito.
Obbligatorio? |
false |
Posizione? |
named |
Valore predefinito |
false |
Accettare l'input della pipeline? |
false |
Accetta caratteri jolly? |
false |
<CommonParameters>
Questo cmdlet supporta i parametri comuni: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer e -OutVariable. Per altre informazioni, vedere about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
Input
Il tipo di input è il tipo di oggetti che è possibile inviare al cmdlet.
Output
Il tipo di output corrisponde al tipo di oggetti emesso dal cmdlet.
Esempi
Example 1: Start the Software Inventory Logging Aggregator
This command starts the Software Inventory Logging Aggregator by using current configuration settings.
PS C:\> Start-SilAggregator
Example 2: Start the aggregator and set polling interval
This command starts the Software Inventory Logging Aggregator. The command sets the value of the host polling interval to every five hours.
PS C:\> Start-SilAggregator -HostPollIntervalInHours 5
Example 3: Start the aggregator and set start time for polling
This command starts the Software Inventory Logging Aggregator. The command sets the value of time to start host polling.
PS C:\> Start-SilAggregator -PollStartTime "2014-10-01 15:08:46"
Example 4: Start the aggregator and set values
This command starts the Software Inventory Logging Aggregator. The command sets the value of the host polling interval to every five hours and sets the value of time to start host polling.
PS C:\> Start-SilAggregator -HostPollIntervalInHours 5 -PollStartTime "2014-10-01 15:08:46"