tag site perfect code best function powershell powershell-v2.0

function - site - Función de invocación en PowerShell a través de cadena



wordpress title tag (2)

Puedes hacerlo:

&"MyFunctionName" $arg1 $arg2

Estoy intentando invocar una función de Powershell "dinámicamente" usando una cadena. Ejemplo

$functionToInvoke = "MyFunctionName"; Invoke-Function $functionToInvoke $arg1 $arg2 # <- what I would like to do

¿Hay alguna manera de lograr esto con PowerShell 2.0?


Si quieres variableizar la cosa de whlole:

function myfunctionname {write-host "$($args[0]) $($args[1])"} $arg1 = "scripts" $arg2 = "test" $functionToInvoke = "MyFunctionName"; invoke-expression "$functionToInvoke $arg1 $arg2" scripts test