Start-SilAggregator
Start-SilAggregator
Starts the Software Inventory Logging Aggregator.
구문
Parameter Set: Default
Start-SilAggregator [-Force] [-HostPollIntervalInHours <Int32> ] [-PollStartTime <DateTime> ] [-Confirm] [-WhatIf] [ <CommonParameters>]
자세한 설명
The Start-SilAggregator cmdlet starts the Software Inventory Logging Aggregator. This cmdlet also sets values for polling start time and host polling interval.
매개 변수
-Force
사용자에게 확인 메시지를 표시하지 않고 명령을 강제 실행합니다.
별칭 |
none |
필수 여부 |
false |
위치 |
named |
기본값 |
none |
파이프라인 입력 허용 여부 |
false |
와일드카드 문자 허용 여부 |
false |
-HostPollIntervalInHours<Int32>
Specifies the polling interval in hours. 이 매개 변수에 허용되는 값은 다음과 같습니다. integers from 1 to 168. A value of 168 is once per week.
별칭 |
none |
필수 여부 |
false |
위치 |
named |
기본값 |
none |
파이프라인 입력 허용 여부 |
false |
와일드카드 문자 허용 여부 |
false |
-PollStartTime<DateTime>
Specifies the polling start date and time, at least one hour in the future.
별칭 |
none |
필수 여부 |
false |
위치 |
named |
기본값 |
none |
파이프라인 입력 허용 여부 |
false |
와일드카드 문자 허용 여부 |
false |
-Confirm
cmdlet을 실행하기 전에 확인 메시지를 표시합니다.
필수 여부 |
false |
위치 |
named |
기본값 |
false |
파이프라인 입력 허용 여부 |
false |
와일드카드 문자 허용 여부 |
false |
-WhatIf
cmdlet이 실행되는 경우 발생할 결과를 보여 줍니다. cmdlet은 실행되지 않습니다.
필수 여부 |
false |
위치 |
named |
기본값 |
false |
파이프라인 입력 허용 여부 |
false |
와일드카드 문자 허용 여부 |
false |
<CommonParameters>
이 cmdlet은 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, -OutVariable 등의 일반 매개 변수를 지원합니다. 자세한 내용은 TechNet의 about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216)
입력
입력 형식은 cmdlet으로 파이프할 수 있는 개체의 형식입니다.
출력
출력 형식은 cmdlet 실행 시 출력되는 개체의 형식입니다.
예
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"