CMS\_AddCustomInventory
Description
Section titled “Description”Adds a persistent CustomInventory row to the database, meaning that the data will not be flushed out the next time that the CustomInventory package is run.
Syntax
Section titled “Syntax”:vb: CMS_AddCustomInventory(category, entry, value, valuetype)
:ps: [bool]CMS_AddCustomInventory -category <string> -entry <string> -value <string> -valuetype <string>
Parameters
Section titled “Parameters”category (String)
Category name
entry (String)
variable name
value (string)
value (string)
If you are inserting a Time (valuetype: “T”) it must be set in epoch-time, meaning seconds since January 1. 1970. The scripting library has a function called GetEpochTime, which will convert a date to seconds from 1-1-1970.
If you want to use ‘now’ as the value, you can either insert;
- an empty string ("")
- or the value (“0”)
valuetype (string)
The type of the value
Valid valuetypes are;
- “S” for string
- “I” for integer
- “T” for time
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_AddCustomInventory("Customer Inventory", "Install time packages", "112", "I")If bStatus Then bStatus = CMS_AddCustomInventory("Bitlocker", "TPM Chip - Enabled", "True", "S")If bStatus Then bStatus = CMS_AddCustomInventory("Bitlocker", "TPM Chip - Manufactured", "1694973146", "T"):ps: PowerShell
Section titled “:ps: PowerShell”CMS_AddCustomInventory 'Customer Inventory' 'Install time packages' '112' 'I'
CMS_AddCustomInventory -category 'Bitlocker' -entry 'TPM Chip - Enabled' -value 'True' -valuetype 'S'
if (CMS_AddCustomInventory('Bitlocker' 'TPM Chip - Manufactured' '1694973146' 'T') { $cs.Job_WriteLog("Added", "Bitlocker entry added to Custom inventory")}Related functions
Section titled “Related functions”