|
Home > Archive > BizTalk Server Orchestration > June 2004 > Restarting BizTalk hosts
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Restarting BizTalk hosts
|
|
| Nikolai @ intergen.co.nz 2004-06-26, 10:53 am |
| Does anyone know of a way to restart a specific host via script?
We implement a host per orchestration project and when we deploy new versions we want to 'bounce' the host, but not the whole BizTalk service.
net stop "bizTalk Service BizTalk Group : BizTalkServerApplication"
net start "bizTalk Service BizTalk Group : BizTalkServerApplication"
This will bounce the service, but i want to bounce a host. Any tips?
| |
| Nikolai @ intergen.co.nz 2004-06-26, 10:53 am |
| Ooopppss didn't mean to post this three times. It kept telling me there was an error posting the message.
| |
| Gilles [MSFT] 2004-06-26, 10:53 am |
| Hello,
>Does anyone know of a way to restart a specific host via script?
>
>We implement a host per orchestration project and when we deploy new versions we want to 'bounce' the host, but not the whole BizTalk service.
>
>net stop "bizTalk Service BizTalk Group : BizTalkServerApplication"
>net start "bizTalk Service BizTalk Group : BizTalkServerApplication"
>
>This will bounce the service, but i want to bounce a host. Any tips?
Use WMI. The MSBTS_HostInstance offers Stop/Start services:
http://msdn.microsoft.com/library/e....asp?frame=true
To create your WMI script, you can modify the "Update" WMI script at:
http://msdn.microsoft.com/library/e....asp?frame=true
Thanks.
-Gilles.
|
|
|
|
|