
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-28-2016 01:40 PM
Is there any way to create a report seeing all user AD Initials? I may have just missed it but cant seem to find the option...
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-30-2016 01:24 PM
We don't specifically scan the Initials attribute - I've added this to the wish list - but you could isolate the first letters of the user's first and last name within a report. I've included a sample report below, which you can add to your Lansweeper installation by following these instructions.
Select Top 1000000 tblADusers.Username,
tblADusers.Userdomain,
tblADusers.Firstname,
tblADusers.Lastname,
SubString(tblADusers.Firstname, 1, 1) + '. ' + SubString(tblADusers.Lastname,
1, 1) + '.' As Initials
From tblADusers
Order By tblADusers.Userdomain,
tblADusers.Username
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-30-2016 01:24 PM
We don't specifically scan the Initials attribute - I've added this to the wish list - but you could isolate the first letters of the user's first and last name within a report. I've included a sample report below, which you can add to your Lansweeper installation by following these instructions.
Select Top 1000000 tblADusers.Username,
tblADusers.Userdomain,
tblADusers.Firstname,
tblADusers.Lastname,
SubString(tblADusers.Firstname, 1, 1) + '. ' + SubString(tblADusers.Lastname,
1, 1) + '.' As Initials
From tblADusers
Order By tblADusers.Userdomain,
tblADusers.Username
