CiTool 可讓IT系統管理員更輕鬆地管理商務用應用程控原則。 您可以使用此工具來管理商務用應用程控原則和 CI 令牌。 本文說明如何使用 CiTool 來更新和管理原則。 它目前包含在 Windows 11 版本 22H2 的 Windows 映射中。
原則命令
命令
描述
Alias
--update-policy </Path/To/Policy/File>
新增或更新目前系統上的原則。
-up
--remove-policy <PolicyGUID>
從系統中移除 PolicyGUID 所指示的原則。
-rp
--list-policies
系統上所有原則的傾印資訊,不論原則是否為作用中。
-lp
令牌命令
命令
描述
Alias
--add-token <Path/To/Token/File> <--token-id ID>
使用選用的特定識別碼,將令牌部署至目前的系統。
-at
--remove-token <ID>
從系統中移除以標識元表示的令牌。
-rt
--list-tokens
系統上所有令牌的傾印資訊。
-lt
注意
關於 --add-token,如果 <ID> 已指定 ,則應該不存在具有 的既存令牌 <ID> 。
其他命令
命令
描述
Alias
--device-id
傾印程式代碼完整性裝置標識碼。
-id
--refresh
嘗試重新整理應用程控原則。
-r
--help
顯示工具的說明功能表。
-h
輸出屬性和描述
列出 (--list-policies) 的原則
Policy ID: d2bda982-ccf6-4344-ac5b-0b44427b6816
Base Policy ID: d2bda982-ccf6-4344-ac5b-0b44427b6816
Friendly Name: Microsoft Windows Driver Policy
Version: 2814751463178240
Platform Policy: true
Policy is Signed: true
Has File on Disk: false
Is Currently Enforced: true
Is Authorized: true
Status: 0
# Check each policy's IsEnforced state and return only the enforced policies
(CiTool -lp -json | ConvertFrom-Json).Policies | Where-Object {$_.IsEnforced -eq "True"} |
Select-Object -Property PolicyID,FriendlyName | Format-List
顯示說明功能表
CiTool -h
----------------------------- Policy Commands ---------------------------------
--update-policy /Path/To/Policy/File
Add or update a policy on the current system
aliases: -up
--remove-policy PolicyGUID
Remove a policy indicated by PolicyGUID from the system
aliases: -rp
--list-policies
Dump information about all policies on the system, whether they be active or not
aliases: -lp
----------------------------- Token Commands ---------------------------------
--add-token Path/To/Token/File <--token-id ID>
Deploy a token onto the current system, with an optional specific ID
If <ID> is specified, a pre-existing token with <ID> should not exist.
aliases:-at
--remove-token ID
Remove a Token indicated by ID from the system.
aliases: -rt
--list-tokens
Dump information about all tokens on the system
aliases: -lt
----------------------------- Misc Commands ---------------------------------
--device-id
Dump the Code Integrity Device Id
aliases: -id
--refresh
Attempt to Refresh CI Policies
aliases: -r
--help
Display this message
aliases: -h