Add a Host Group to a Sensor Update policy
-Id
: The Sensor Update Policy ID
-Group
: The Host Group ID
PS> Add-CsSensorGroup -Id <string> -Group <string>
Disable Sensor Update policies
-Id
: An array of one or more Sensor Update policy IDs
PS> Disable-CsSensorPolicy -Id @(<string>, <string>)
Update Sensor Update Policies by specifying the ID of the policy and details to update
-Resources
: An array of Sensor Update policy properties
PS> Edit-CsSensorPolicy -Resources @(@{ id = <string>; name = <string>; description = <string> })
Enable Sensor Update policies
-Id
: An array of one or more Sensor Update policy IDs
PS> Enable-CsSensorPolicy -Id @(<string>, <string>)
Retrieve available builds for use with Sensor Update policies
-Platform
: The operating system to return builds for
PS> Get-CsSensorBuild -Platform <string>
Search for members of a Sensor Update policy in your environment
-Id
: The ID of the Sensor Update 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-CsSensorMemberId -Id <string>
Search for details about members of a Sensor Update policy in your environment
-Id
: The ID of the Sensor Update 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-CsSensorMemberInfo -Id <string>
Search for Sensor Update 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-CsSensorPolicyId
Search for info about Sensor Update policies
-Id
: The IDs of specific Sensor Update 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-CsSensorPolicyInfo
Reveals an uninstall token for a specific host
-Id
: The target Agent ID. To retrieve the bulk maintenance token use 'MAINTENANCE'
-Audit
: An audit message explaining the reason for the token reveal
PS> Get-CsUninstallToken -Id <string> -Audit <string>
Create Sensor Update policies by specifying details about the policy to create
-Resources
: An array of Sensor Update policy properties
PS> New-CsSensorPolicy -Resources @(@{ name = <string>; platform_name = <string> })
Remove a Host Group from a Sensor Update policy
-Id
: The Sensor Update policy ID
-Group
: The Host Group ID
PS> Remove-CsSensorGroup -Id <string> -Group <string>
Delete a set of Sensor Update policies by specifying their IDs
-Id
: The IDs of the Sensor Update policies to delete
PS> Remove-CsSensorPolicy -Id @(<string>, <string>)
Sets the precedence of Sensor Update policies based on the order of IDs specified in the request
-Platform
: The operating system platform the Sensor Update policies are assigned to
-Id
: An array of one or more Sensor Update policy IDs
PS> Set-CsSensorPrecedence -Platform <string> -Id @(<string>, <string>)