Just a short tidbit on how to list your ReportServer Items using PowerShell
#note this script is tested on PowerShell v2 and SSRS 2008 R2 $ReportServerUri = "http://yourserver/ReportServer/ReportService2005.asmx"; $Proxy = New-WebServiceProxy -Uri $ReportServerUri -Namespace SSRS.ReportingService2005 -UseDefaultCredential ; #check out all members of $Proxy #$Proxy | Get-Member #http://msdn.microsoft.com/en-us/library/aa225878(v=SQL.80).aspx $items = $Proxy.ListChildren("/", $true); $items | select Type, Path, ID, Name | sort-object Type, Name |
2 Comments