
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2011 10:08 PM
Users: All users pictures report does not display pictures:
This image displays in the user info:
URL - http://servername/smallthumb.aspx?user=UserName&domain=DomainName&size=160
This image displays in the report:
URL - http://servername/images/smallthumb.aspx?user=UserName&domain=DomainName&size=160
Looks like /images needs to be removed from URL.
This image displays in the user info:
URL - http://servername/smallthumb.aspx?user=UserName&domain=DomainName&size=160
This image displays in the report:
URL - http://servername/images/smallthumb.aspx?user=UserName&domain=DomainName&size=160
Looks like /images needs to be removed from URL.
Labels:
- Labels:
-
Archive
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2011 11:12 PM
I have updated script to the one you provided. It displays pictures fine now.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2011 11:01 PM
This is the code from the installer
Anyone else with the same problem?
CREATE VIEW dbo.web40repuserpictures
AS
Select Top 1000000 '<img src="smallthumb.aspx?user=' + tblADusers.Username + '&domain=' + tblADusers.Userdomain + '&size=32"/>' As Picture, tblADusers.Displayname, tblADusers.Firstname, tblADusers.Lastname, tblADusers.Username, tblADusers.Userdomain, tblADusers.Department From tblADusers Order By tblADusers.Displayname
GO
Anyone else with the same problem?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2011 10:53 PM
I have checked "Users: All users pictures" report by editing it in Report builder, it has "size=160" in it.
Here is a script from there:
Select Top 1000000 'smallthumb.aspx?user=UserName&domain=DomainName&size=160' As icon, tblADusers.Displayname, tblADusers.Firstname, tblADusers.Lastname, tblADusers.Username, tblADusers.Userdomain, tblADusers.Department From tblADusers Order By tblADusers.Displayname
"UserName" And "DomainName" have correct names in there.
Here is a script from there:
Select Top 1000000 'smallthumb.aspx?user=UserName&domain=DomainName&size=160' As icon, tblADusers.Displayname, tblADusers.Firstname, tblADusers.Lastname, tblADusers.Username, tblADusers.Userdomain, tblADusers.Department From tblADusers Order By tblADusers.Displayname
"UserName" And "DomainName" have correct names in there.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2011 10:15 PM
Can you verify the url, it should end on "&size=32"
