December 2015
Intermediate to advanced
760 pages
14h 31m
English
In this recipe, we will add a user with a few roles to SSRS.
In this recipe, we will add QUERYWORKS\tstark as a browser and Content Manager to the customer list report.
For your environment, you can identify a user you want to add to an existing report and which roles you want to assign to them.
Let's explore the code required to add a user with a role to SSRS:
$reportServerUri = "http://localhost/ReportServer/ReportService2010.asmx" $proxy = New-WebServiceProxy -Uri $reportServerUri -UseDefaultCredential $type = $Proxy.GetType().Namespace $itemPath = "/Customer Reports/Customer List" #this will hold all ...
Read now
Unlock full access