Can anyone please tell me where we can see the status of BitLocker in service now.

niveditakumari
Mega Sage

Hello,

I have a requirement when Service Now gets an update to the BitLocker status field then it will create an incident for the support group for that computer. Can anyone please suggest me that where we can see the BitLocker status field in service now.

Can anyone please help me with this.

 

Regards,

Nivedita

1 ACCEPTED SOLUTION

Hi,

Go to cmdb_ci.list and search with name --contains--locker and see if there is any record for bitlocker.

 

Yes, you can write business rule to create an incident. In BR, in when to run the condition can be status changes and in script field you may write below based on your requirement.

var incRec = new GlideRecord('incident');

incRec.newRecord();

incRec.short_description = 'bit locker status changed';

incRec.cmdb_ci = current.sys_id;

incRec.assignment_group ='sys_id_of_group';

incRec.insert();

 

View solution in original post

25 REPLIES 25

Hello,

I need to capture asset value of the computer and i have to set that asset value in description field of ticket that is being created after update of Bitlocker status field. I have written below code but i am not able to get asset value.

Please find the code :

incRec.description = current.asset;

Can you please tell me how i can get asset value of that computer.

 

Regards,

Nivedita