I\'m trying to Invoke a Powershell function \"dynamically\" using a string. Example
$functionToInvoke = \"MyFunctionName\";
Invoke-Function $functionToInvok
If you're wanting to variableize the whlole thing:
function myfunctionname {write-host "$($args[0]) $($args[1])"}
$arg1 = "scripts"
$arg2 = "test"
$functionToInvoke = "MyFunctionName";
invoke-expression "$functionToInvoke $arg1 $arg2"
scripts test
You can do this:
&"MyFunctionName" $arg1 $arg2