Reputation: 2046
I have a clean install of TFS 2017 Update 1 and SQL Server 2016 Standard Edition SP1. During the install I configured the Reporting option and I can see in the TFS Administration Console that reporting is correctly configured and is running properly. I can also navigate to the SSRS Reports page and I see folders created there for my Test Collection. However, I do not see any folders there for my test team projects and I do not see the Reports link on the web interface or in Visual Studio Team Explorer. It appears that TFS is not creating the default SSRS reports when I create a new Team Project. Does anyone know how to fix this?
Upvotes: 0
Views: 1626
Reputation: 31
There are not going to be any TFS Power Tools for VS2017.
To add reports after the fact in 2017 use:
TFSConfig addprojectreports /collection:"http://myServer:8080/tfs/DefaultCollection" /teamproject:MyProject /template:"TemplateName" https://www.visualstudio.com/en-us/docs/report/admin/upload-reports
TFSConfig addprojectreports is available from TFS 2017 Update 1RC2. If you are on TFS 2017 RTM or TFS 2017 Update 1 RC1 then use following method to upload reports.
Install TFS 2017 Update 1 (or TFS 2017 Update 1 RC2) on a separate server, no need to configure it, just the binaries are needed. Then run TFSConfig addprojectreports from your new server (pointed to the Actual server) and upload the reports.
Upvotes: 3
Reputation: 115037
When creating a project through the web Ui, no reports and no Sharepoint portal is created.
To create a Sharepoint site and/or to provision reports for your project, you'll need to use visual studio/team explorer to create the team project.
To provision reporting afterwards you can use the tfs 2015 power tools, tfpt.exe I'd guess. At least that works when provisioning reports on tfs 2015, if I remember correctly there has not yet been a 2017 release of this power tool.
Upvotes: 3