Calling workflow from another workflow as a job in powershell
问题 I have to call a long running workflow from another workflow asynchronously. Is there a way to do that in powershell? workflow CalledWorkflow { Start-Sleep -s 100; } workflow CallingWorkflow { CalledWorkflow "CalledWorkFlow Invoked" } Now when i call CallingWorkflow I need the callingworkflow to immediately return printing "CalledWorkflow Invoked" so that i can start continue my work while the calledworkflow is running in backgroud. 回答1: What environment are you running the workflows in? In