New-CMRequirementRuleOUValue
針對應用程式部署類型建立 Active Directory 組織單位 (OU) 需求規則。
語法
New-CMRequirementRuleOUValue
-OrganizationalUnit <Hashtable[]>
-RuleOperator <RuleExpressionOperator>
[-InputObject] <IResultObject>
[-DisableWildcardHandling]
[-ForceWildcardHandling]
[<CommonParameters>]
Description
使用此 Cmdlet 建立 Active Directory 組織單位, (OU) 應用程式部署類型的需求規則。
使用此 Cmdlet 之後,請針對部署類型使用其中一個 Add- 或 Set- Cmdlet。 將此需求規則對象傳遞至 AddRequirement 或 RemoveRequirement 參數。
注意事項
從 Configuration Manager 月臺磁碟驅動器執行 Configuration Manager Cmdlet,例如 PS XYZ:\>
。 如需詳細資訊,請 參閱開始使用。
範例
範例 1:新增 Active Directory OU 的需求規則
此範例會先使用 Get-CMGlobalCondition Cmdlet 來取得預設 的組織單位 (OU) 全域條件。 然後,它會為兩個 Active Directory OU 定義數個變數。 接下來,它會建立需求規則物件。 最後,它會將該規則對象傳遞至 Set-CMScriptDeploymentType Cmdlet 以新增需求。
$myGC = Get-CMGlobalCondition -Name "Organizational unit (OU)"
$ouName1 = "CN=Computers,DC=Contoso,DC=Com"
$ouName2 = "CN=Servers,DC=Contoso,DC=Com"
$ouA = @{"OU"=$ouName1; "IsIncludeSubOU"=$true}
$ouB = @{"OU"=$ouName2; "IsIncludeSubOU"=$false}
$myRule = $myGC | New-CMRequirementRuleOUValue -RuleOperator NoneOf -OU $ouA,$ouB
Set-CMScriptDeploymentType -ApplicationName "Central App" -DeploymentTypeName "Install" -AddRequirement $myRule
參數
-DisableWildcardHandling
此參數會將通配符視為常值字元值。 您無法將其與 ForceWildcardHandling 結合。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-ForceWildcardHandling
此參數會處理通配符,並可能導致非預期的行為 (不建議) 。 您無法將其與 DisableWildcardHandling 結合。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-InputObject
指定要作為此需求規則基礎的全域條件物件。 若要取得此物件,請使用 Get-CMGlobalCondition Cmdlet 。
在大部分情況下,您會使用預設的組織單位 (OU) 全域條件,例如:。 Get-CMGlobalCondition -Name "Organizational unit (OU)"
類型: | IResultObject |
別名: | GlobalCondition |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-OrganizationalUnit
指定哈希表來指定 OU 的名稱,以及是否要包含子 OU。 例如:
@{"OU"="CN=Computers,DC=Contoso,DC=Com"; "IsIncludeSubOU"=$true}
類型: | Hashtable[] |
別名: | OrganizationalUnits, OU, OUs, OrganizationalUnitWithSubOUOption, OrganizationalUnitWithSubOUOptions |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-RuleOperator
指定操作員,以比較裝置的設定與預期的值。
類型: | RuleExpressionOperator |
接受的值: | OneOf, NoneOf |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
輸入
Microsoft.ConfigurationManagement.ManagementProvider.IResultObject
輸出
System.Object
相關連結
- New-CMRequirementRuleActiveDirectorySiteValue
- New-CMRequirementRuleBooleanValue
- New-CMRequirementRuleCMSiteValue
- New-CMRequirementRuleCommonValue
- New-CMRequirementRuleDeviceOwnershipValue
- New-CMRequirementRuleExistential
- New-CMRequirementRuleExpression
- New-CMRequirementRuleFileAttributeValue
- New-CMRequirementRuleFilePermissionValue
- New-CMRequirementRuleFreeDiskSpaceValue
- New-CMRequirementRuleInputTypeValue
- New-CMRequirementRuleOperatingSystemLanguageValue
- New-CMRequirementRuleOperatingSystemValue
- New-CMRequirementRuleRegistryKeyPermissionValue
- New-CMRequirementRuleScreenResolutionValue
- Get-CMGlobalCondition
- 部署類型需求
- 建立全域條件