This post was originally published here

This post was an old post that I published on BizTalkAdminsBlogging.com that is no longer available, so I decided to republish it here on my blog.

In one of my previous posts, I demonstrated how you could change the startup type for BizTalk Server services automatically using PowerShell. This time I will demonstrate how you can create a script that allows us to automatically restart all your BizTalk services:

get-service BTS* | foreach-object -process {restart-service $_.Name}

Download

THIS POWERSHELL IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND.

You can download How to Restart BizTalk Server services with PowerShell from GitHub here:

The post How to Restart BizTalk Server services with PowerShell appeared first on SANDRO PEREIRA BIZTALK BLOG.