Start-SilAggregator
Start-SilAggregator
Starts the Software Inventory Logging Aggregator.
Sintaxis
Parameter Set: Default
Start-SilAggregator [-Force] [-HostPollIntervalInHours <Int32> ] [-PollStartTime <DateTime> ] [-Confirm] [-WhatIf] [ <CommonParameters>]
Descripción detallada
The Start-SilAggregator cmdlet starts the Software Inventory Logging Aggregator. This cmdlet also sets values for polling start time and host polling interval.
Parámetros
-Force
Obliga a que el comando se ejecute sin pedir la confirmación del usuario.
Alias |
none |
¿Necesario? |
false |
¿Posición? |
named |
Valor predeterminado |
none |
¿Aceptar la entrada de la canalización? |
false |
¿Aceptar caracteres comodín? |
false |
-HostPollIntervalInHours<Int32>
Specifies the polling interval in hours. Los valores aceptables para este parámetro son: integers from 1 to 168. A value of 168 is once per week.
Alias |
none |
¿Necesario? |
false |
¿Posición? |
named |
Valor predeterminado |
none |
¿Aceptar la entrada de la canalización? |
false |
¿Aceptar caracteres comodín? |
false |
-PollStartTime<DateTime>
Specifies the polling start date and time, at least one hour in the future.
Alias |
none |
¿Necesario? |
false |
¿Posición? |
named |
Valor predeterminado |
none |
¿Aceptar la entrada de la canalización? |
false |
¿Aceptar caracteres comodín? |
false |
-Confirm
Solicita confirmación antes de ejecutar el cmdlet.
¿Necesario? |
false |
¿Posición? |
named |
Valor predeterminado |
false |
¿Aceptar la entrada de la canalización? |
false |
¿Aceptar caracteres comodín? |
false |
-WhatIf
Muestra lo que sucedería si se ejecuta el cmdlet. El cmdlet no se ejecuta.
¿Necesario? |
false |
¿Posición? |
named |
Valor predeterminado |
false |
¿Aceptar la entrada de la canalización? |
false |
¿Aceptar caracteres comodín? |
false |
<CommonParameters>
Este cmdlet admite los parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, vea about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
Entradas
El tipo de entrada es el tipo de objetos que se pueden canalizar al cmdlet.
Salidas
El tipo de resultado es el tipo de los objetos que el cmdlet emite.
Ejemplos
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"