CMS\_RemoveCustomInventory
Description
Section titled “Description”Removes a CustomInventory row that is persistent from the database.
Syntax
Section titled “Syntax”:vb: CMS_RemoveCustomInventory(category, entry) as boolean
:ps: [bool]CMS_RemoveCustomInventory -category <string> -entry <string>
Parameters
Section titled “Parameters”category (String)
Category name
entry (String)
variable name
Return value
Section titled “Return value”:vb: Boolean, TRUE if function completed successfully.
:ps: Boolean, TRUE if function completed successfully.
Example
Section titled “Example”:vb: VBScript
Section titled “:vb: VBScript”If bStatus Then bStatus = CMS_RemoveCustomInventory("Customer Inventory", "Install time packages")If bStatus Then bStatus = CMS_RemoveCustomInventory("Bitlocker", "TPM Chip - Enabled")If bStatus Then bStatus = CMS_RemoveCustomInventory("Bitlocker", "TPM Chip - Manufactured"):ps: PowerShell
Section titled “:ps: PowerShell”CMS_RemoveCustomInventory 'Customer Inventory' 'Install time packages'CMS_RemoveCustomInventory -category 'Bitlocker' -entry 'TPM Chip - Enabled'if (CMS_RemoveCustomInventory 'Bitlocker' 'TPM Chip - Manufactured') { $cs.Job_WriteLog("Removed", "Bitlocker entry removed from Custom inventory")}Related functions
Section titled “Related functions”