Below is a PowerShell function:
function ReturnSomething {
return 42
}
How can I get this PowerShell return value (42
) by using JScript?
Below is a PowerShell function:
function ReturnSomething {
return 42
}
How can I get this PowerShell return value (42
) by using JScript?