How to get browser information on user login?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2018 01:10 AM
We created a custom table to log every time a user logins, we get the information from sysevent and event name is login. Is there anyway we can add browser information to this?
Data is populated via script action on event "login"
var userLogin = new GlideRecord("u_user_login");
userLogin.u_user_name = event.parm1;
userLogin.u_user = event.user_id;
userLogin.u_when = event.sys_created_on;
userLogin.u_ip = event.parm2;
userLogin.u_event = event.name;
userLogin.insert();
Labels:
- Labels:
-
Scripting and Coding
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2018 05:53 AM
Hi JC,
Please go through with following link. I believe it would be helpful for you.
https://community.servicenow.com/community?id=community_question&sys_id=ddf9cb29db5cdbc01dcaf3231f96192e&view_source=searchResult
Please mark post correct or helpful based on the response.
Regards,
Nikhil Dixit