Set-AdaptiveScope
此 Cmdlet 僅適用于安全 & 性合規性 PowerShell。 如需詳細資訊,請參閱 安全 & 性合規性 PowerShell。
使用 Set-AdaptiveScope Cmdlet 來修改組織中的調適型範圍。
如需下方<語法>一節中參數集的詳細資訊,請參閱 Exchange Cmdlet 語法。
Syntax
Set-AdaptiveScope
[-Identity] <ComplianceRuleIdParameter>
-FilterConditions <PswsHashtable>
[-Comment <String>]
[<CommonParameters>]
Set-AdaptiveScope
[-Identity] <ComplianceRuleIdParameter>
-RawQuery <String>
[-Comment <String>]
[<CommonParameters>]
Set-AdaptiveScope
[-Identity] <ComplianceRuleIdParameter>
[-Comment <String>]
[<CommonParameters>]
Description
若要在安全 & 性合規性 PowerShell 中使用此 Cmdlet,您必須獲指派許可權。 如需詳細資訊,請參閱 Microsoft Purview 合規性入口網站中的權限。
範例
範例 1
Set-AdaptiveScope -Identity "Project X" -FilterConditions @{"Conditions" = @{"Value" = "Redmond"; "Operator" = "Equals"; "Name" = "City"}; "Conjunction" = "And"}
此範例會修改結束名為 Project X 之調適型範圍中的篩選準則。新的篩選器會尋找 Redmond 市中的所有使用者。
參數
-Comment
Comment 參數會指定選擇性註解。 如果指定的值含有空格,則必須以雙引號 (") 括住值,例如︰"This is an admin note"。
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Security & Compliance |
-FilterConditions
FilterConditions 參數會指定動態界限中包含的條件。 有效的語法和值取決於 LocationType 參數的值:
- 使用者或群組:Active Directory 屬性。 例如,針對 「 ('國家或地區' 等於 'US' 或 'Canada') 且 'Department' 等於 'Finance' 的條件,請使用下列語法:
@{"Conditions" = @(@{"Conditions" = @(@{"Value" = "US"; "Operator" = "Equals"; "Name" = "CountryOrRegion"}, @{"Value" = "Canada"; "Operator" = "Equals"; "Name" = "CountryOrRegion"}); "Conjunction" = "Or"}, @{"Value" = "Finance"; "Operator" = "Equals"; "Name" = "Department"}); "Conjunction" = "And"}
- 月臺:已編制索引的自訂屬性。 例如,針對條件 「'Refinable string 0' 等於 'Human Resources',請使用下列語法:
@{"Conditions" = @{"Value" = "Human Resources"; "Operator" = "Equals"; "Name" = "RefinableString00"}; "Conjunction" = "And"}
您無法搭配 RawQuery 參數使用此參數。
Type: | PswsHashtable |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Security & Compliance |
-Identity
Identity 參數會指定您想要修改的調適型範圍。 您可以使用可唯一識別調適型範圍的任何值。 例如:
- 名稱
- 辨別名稱 (DN)
- GUID
Type: | ComplianceRuleIdParameter |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | Security & Compliance |
-RawQuery
RawQuery 參數會將範圍切換為進階查詢模式。 您可以針對進階查詢模式使用 OPATH 篩選語法。
您無法搭配 FilterConditions 參數使用此參數。
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Security & Compliance |