My blog backlog is full of precious things, and I stop counting the number of pages in my OneNote that I plan to publish. Today I randomly selected this: Unable to find transmitPipeline.vstemplate error that I got on December 4, 2017, in a client when I tried to do something – unfortunately, I don’t remember what I was trying to do – in Visual Studio. The full error message was:
Unable to find “C:\program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\ItemTemplatesCache\BizTalk\Pipeline Files\TransmitPipeline.zip\transmitPipeline.vstemplate”.
Please repair the product to fix this issue.
📝 One-Minute Brief
A short troubleshooting guide explaining why Visual Studio fails to create BizTalk pipelines due to a missing transmitPipeline.vstemplate file and how repairing the BizTalk Server installation restores the required templates.
Cause
Well, I don’t know the exact reasons why this happened or why these files were missing from the development machine.
However, that is clear from the error message description. The Visual Studio templates, in this case, the Transmit Pipeline template, were missing from the expected directory.
Solution
The easy solution to this problem is to use the BizTalk Server ISO file to repair the installation.
This will “install/copy” all the files, including all BizTalk Server Visual Studio templates to the development machine.
Hope you find this helpful! If you liked the content or found it useful and would like to support me in writing more, consider buying (or helping to buy) a Star Wars Lego set for my son.

Thanks a for your sharing Sandro. I just find another nd smooth way for this issue:
1-Copy missed templates from Biztalk ISO install : BizTalk Server\MSI\Program Files\Developer Tools\BizTalk\Pipeline Files
to Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\ProjectTemplates\BizTalk\Pipeline Files
2-reinstall visual studio templates via cmd : devenv.exe /installvstemplates
Great to know that are other ways! Thanks for sharing it here.