Printing Using ReportViewer - SSRS

We use ReportViewer 2015 in our ASP.NET web application and use it with IE 11. When users (without administrator rights) try to print reports, they get the following error: enter image description here

If I click, undo this error: then the following pop-ups will appear:

enter image description here

and then, despite the fact that we click yes or no, we get the following message:

enter image description here

We used to use Report Viewer 9, and all this worked fine, but this version of Report Viewer does not look good in IE 11.

We also deploy RSClientPrint-x86.inf for all user machines.

We also have temporarily assigned administrator rights for users on their machine, and when the configuration happens on their machine, we copied the RSClientPrint assemblies and then distributed them, but that did not work.

Also, even after deploying assemblies, as soon as administrator permissions are removed from the user, their printing stops working again.

Can anyone help?

+8
reporting-services reportviewer
source share
1 answer

First, in order to eliminate the obvious, have the user rights been set correctly? A quick search gives a link

Second, Reporting Services uses Windows Authentication by default. It looks like you want to use forms authentication like this .

EDIT: It looks like this is an ActiveX installation permissions issue. To install Activex without administrator privileges, type ocsetup.exe AxInstallService on the administratorโ€™s command line and enable it after completion. You will have to configure it using GPMC. Read more about it here .

+1
source share

All Articles