本文介绍了通过字符串在PowerShell中调用函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图使用字符串动态调用PowerShell函数。例子
$ functionToInvoke =MyFunctionName;
Invoke-Function $ functionToInvoke $ arg1 $ arg2#< - 我想要做的事情
有没有什么办法可以通过PowerShell 2.0实现这一点? 您可以这样做:
> &MyFunctionName$ arg1 $ arg2
I'm trying to Invoke a Powershell function "dynamically" using a string. Example
$functionToInvoke = "MyFunctionName";
Invoke-Function $functionToInvoke $arg1 $arg2 # <- what I would like to do
Is there any way to achieve this with PowerShell 2.0 ?
解决方案
You can do this:
&"MyFunctionName" $arg1 $arg2
这篇关于通过字符串在PowerShell中调用函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!