0

I want to deploy a SSRS project from a TFS server to another server (ProdServer) as a job in SQL Server and run it dynamically.

How I can do it please.

aduguid
  • 3,099
  • 6
  • 18
  • 37
Hamdy
  • 430
  • 1
  • 6
  • 19

1 Answers1

1

You can try to write Batch script or use utility such as RS.exe to deploy the report, then in TFS Build definition call the script or utility.

  1. Write script to deploy the report, reference this article. For Utility reference this thread: Reporting Services Deployment
  2. Create a Scheduled build definition and add the step BatchScript/Command Line/PowerShell to call the script/utility

Below threads also for your reference:

Andy Li-MSFT
  • 28,712
  • 2
  • 33
  • 55
  • Thank you for your reply. This is new form me working on scripts. I will notice if I succeeded. – Hamdy Aug 31 '17 at 09:47