Add a host group to a Device Control policy
-Id
: The Device Control Policy ID
-Group
: The Host Group ID
PS> Add-CsControlGroup -Id <string> -Group <string>
Disable Device Control policies
-Id
: An array of one or more Device Control policy IDs
PS> Disable-CsControlPolicy -Id @(<string>, <string>)
Update Device Control Policies by specifying the ID of the policy and details to update
-Resources
: An array of Device Control policy properties
PS> Edit-CsControlPolicy -Resources @(@{ id = <string>; name = <string>; description = <string> })
Enable Device Control policies
-Id
: An array of one or more Device Control policy IDs
PS> Enable-CsControlPolicy -Id @(<string>, <string>)
Search for members of a Device Control Policy in your environment
-Id
: The ID of the Device Control policy to search for members of
-Filter
: The filter expression that should be used to limit the results
-Limit
: The maximum records to return [default: 5000]
-Offset
: The offset to start retrieving records from [default: 0]
-All
: Repeat request until all results are returned
PS> Get-CsControlMemberId -Id <string>
Search for details about members of a Device Control policy in your environment
-Id
: The ID of the Device Control policy to search for members of
-Filter
: The filter expression that should be used to limit the results
-Limit
: The maximum records to return [default: 5000]
-Offset
: The offset to start retrieving records from [default: 0]
-All
: Repeat request until all results are returned
PS> Get-CsControlMemberInfo -Id <string>
Search for Device Control policies in your environment
-Filter
: The filter expression that should be used to limit the results
-Limit
: The maximum records to return [default: 500]
-Offset
: The offset to start retrieving records from [default: 0]
-All
: Repeat request until all results are returned
PS> Get-CsControlPolicyId
Search for info about Device Control policies
-Id
: The IDs of specific Device Control policies to return
-Filter
: The filter expression that should be used to limit the results
-Limit
: The maximum records to return [default: 500]
-Offset
: The offset to start retrieving records from [default: 0]
-All
: Repeat request until all results are returned
PS> Get-CsControlPolicyInfo
Create Device Control policies by specifying details about the policy to create
-Resources
: An array of Device Control policy properties
PS> New-CsControlPolicy -Resources @(@{ name = <string>; platform_name = <string> })
Remove a Host Group from a Device Control policy
-Id
: The Device Control policy ID
-Group
: The Host Group ID
PS> Remove-CsControlGroup -Id <string> -Group <string>
Delete a set of Device Control policies by specifying their IDs
-Id
: The IDs of the Device Control policies to delete
PS> Remove-CsControlPolicy -Id @(<string>, <string>)
Sets the precedence of Device Control policies based on the order of IDs specified in the request
-Platform
: The operating system platform the Device Control policies are assigned to
-Id
: An array of one or more Device Control policy IDs
PS> Set-CsControlPrecedence -Platform <string> -Id @(<string>, <string>)