SharePoint シード コンピューター DiscoveryProvider

Microsoft.SharePoint.Library.SPSeed.DiscoveryProvider (DataSourceModuleType)

SharePoint シード コンピューターを検出する検出プロバイダーです。

Element properties:

TypeDataSourceModuleType
IsolationAny
AccessibilityPublic
RunAsMicrosoft.SharePoint.Library.AdminAccount
OutputTypeSystem.Discovery.Data

Member Modules:

ID Module Type TypeId RunAs 
DS DataSource Microsoft.SharePoint.Library.FilteredRegistryDiscoveryProvider Default

Overrideable Parameters:

IDParameterTypeSelectorDisplay NameDescription
SyncTimestring$Config/SyncTime$SyncTimeSharePoint シード コンピューターの DiscoveryProvider の SyncTime (開始時刻) プロパティです。SyncTime は、"HH:mm" の形式の文字列値です。SyncTime、IntervalSeconds、管理パックのインポート時刻のすべてによって、特定のワークフローの正確な実行時間が決まります。たとえば、IntervalSeconds = 21600 (6 時間) で SyncTime = "01:15" の場合は、可能性のあるワークフローの実行時間が午前 1 時 15 分、午前 7 時 15 分、午後 1 時 15 分、午後 7 時 15 分になります。管理パックが午前 1 時 15 分から午前 7 時 15 分の間にインポートされた場合は午前 7 時 15 分にワークフローが開始され、午後 1 時 15 分から午後 7 時 15 分の間にインポートされた場合は午後 7 時 15 分にワークフローが開始されます。ただし、実際の開始時刻は、ネットワークの遅延など、他の要因によって変動することがあります。
IntervalSecondsstring$Config/IntervalSeconds$IntervalSecondsSharePoint シード コンピューターの DiscoveryProvider の IntervalSeconds プロパティです。この検出が実行される頻度 (秒単位) を表します。

Source Code:

<DataSourceModuleType ID="Microsoft.SharePoint.Library.SPSeed.DiscoveryProvider" Accessibility="Public" RunAs="Microsoft.SharePoint.Library.AdminAccount">
<Configuration>
<IncludeSchemaTypes>
<SchemaType>System!System.Discovery.MapperSchema</SchemaType>
</IncludeSchemaTypes>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="ComputerName" type="xsd:string"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="IntervalSeconds" type="xsd:integer"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="SyncTime" type="xsd:string"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="ClassId" type="xsd:string"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="RegistryKey" type="xsd:string"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="InstanceSettings" minOccurs="0" maxOccurs="1" type="SettingsType"/>
</Configuration>
<OverrideableParameters>
<OverrideableParameter ID="IntervalSeconds" Selector="$Config/IntervalSeconds$" ParameterType="string"/>
<OverrideableParameter ID="SyncTime" Selector="$Config/SyncTime$" ParameterType="string"/>
</OverrideableParameters>
<ModuleImplementation Isolation="Any">
<Composite>
<MemberModules>
<DataSource ID="DS" TypeID="Microsoft.SharePoint.Library.FilteredRegistryDiscoveryProvider">
<ComputerName>$Config/ComputerName$</ComputerName>
<RegistryAttributeDefinitions>
<RegistryAttributeDefinition>
<AttributeName>IsInstalled</AttributeName>
<Path>$Config/RegistryKey$</Path>
<PathType>0</PathType>
<AttributeType>0</AttributeType>
</RegistryAttributeDefinition>
</RegistryAttributeDefinitions>
<IntervalSeconds>$Config/IntervalSeconds$</IntervalSeconds>
<SyncTime>$Config/SyncTime$</SyncTime>
<ClassId>$Config/ClassId$</ClassId>
<InstanceSettings>$Config/InstanceSettings$</InstanceSettings>
<Expression>
<SimpleExpression>
<ValueExpression>
<XPathQuery Type="Boolean">Values/IsInstalled</XPathQuery>
</ValueExpression>
<Operator>Equal</Operator>
<ValueExpression>
<Value Type="Boolean">true</Value>
</ValueExpression>
</SimpleExpression>
</Expression>
</DataSource>
</MemberModules>
<Composition>
<Node ID="DS"/>
</Composition>
</Composite>
</ModuleImplementation>
<OutputType>System!System.Discovery.Data</OutputType>
</DataSourceModuleType>