Powershell和调用函数范围

时间:2014-03-27 09:43:00

标签: powershell

可以从函数 Child 中强制 Parent 函数 Parent 调用函数 Child 吗?
示例代码:

function Parent
{
   Write-Host "I'm Calling Parent Function"
   Child
   Write-Host "Code...Code..."
}

function Child
{
   Write-Host "I'm Calling Child Function"
   # END function:Parent
   Write-Host "Parent Ended!"
}

PS> Parent
PS> I'm Calling Parent Function
I'm Calling Child Function
Parent Ended!

任何想法?

1 个答案:

答案 0 :(得分:1)

试试这个(使用break我认为是dos命令或内部powershell命令,因为get-command break返回错误)

function Child
{
   Write-Host "I'm Calling Child Function"
   break
   Write-Host "Parent Ended!"
}