-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christophe CREMON
committed
Jul 6, 2012
1 parent
f13aa96
commit 02cc917
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
Release Notes | ||
PowerShell Module that allows you to control Microsoft BizTalk Server (2006+) via PowerShell | ||
|
||
Requirements : | ||
|
||
PowerShell 2.0 in 32bit mode (due to dependency with 'Microsoft.BizTalk.ExplorerOM' assembly) | ||
Microsoft BizTalk Server 2006 or above | ||
'Microsoft.BizTalk.ExplorerOM' assembly | ||
|
||
|
||
Important : You must run the module on the BizTalk Server | ||
|
||
What does this module allows you to control ? | ||
|
||
Action | ||
Component Start Stop Get Enlist Unenlist Terminate Enable Disable | ||
Applications x x x | ||
Host Instances x x x | ||
Orchestrations x x x x x | ||
Receive Locations x x x | ||
Send Ports x x x x x | ||
Send Port Groups x x x x x | ||
Service Instances x x | ||
|
||
|
||
USAGE | ||
|
||
List BizTalk Applications => Get-Application | ||
Look for a specific BizTalk Application => Get-Application -Name Application1 (support regular expressions) | ||
Stop an Application => Stop-Application -Name Application1 | ||
|
||
|
||
You can pipe Commands like this : | ||
|
||
Stop All Applications => Get-Application | Stop-Application | ||
|
||
|
||
In order to respect PowerShell Programming Best Practices, some verbs have been changed | ||
|
||
Register = Enlist | ||
Unregister = UnEnlist | ||
Remove = Terminate | ||
|
||
|
||
List of Available Commands : | ||
|
||
Applications | ||
Get-Application | ||
Start-Application | ||
Stop-Application | ||
|
||
Host Instances | ||
Get-HostInstance | ||
Start-HostInstance | ||
Stop-HostInstance | ||
|
||
Orchestrations | ||
Get-Orchestration | ||
Start-Orchestration | ||
Stop-Orchestration | ||
Register-Orchestration | ||
Unregister-Orchestration | ||
|
||
Receive Locations | ||
Get-ReceiveLocation | ||
Enable-ReceiveLocation | ||
Disable-ReceiveLocation | ||
|
||
Send Ports | ||
Get-SendPort | ||
Start-SendPort | ||
Stop-SendPort | ||
Register-SendPort | ||
Unregister-SendPort | ||
|
||
Send Port Groups | ||
Get-SendPortGroup | ||
Start-SendPortGroup | ||
Stop-SendPortGroup | ||
Register-SendPortGroup | ||
Unregister-SendPortGroup | ||
|
||
Service Instances | ||
Get-ServiceInstance | ||
Remove-ServiceInstance |