, powershell :
workflow Hey
{
PrepareMachine
ConfigureIIS
}
function PrepareMachine() {
Import-Module "MyCommonStuff"
CallSomethingBlahBlah()
}
function ConfigureIIS {
Import-Module "MyCommonStuff"
CallSomethingBlahBlah2()
}
, , :
workflow Hey
{
InlineScript {
func1
}
}
function func1 {
Write-Output "Boom!"
}
, . , , . - , . rant , , :)