Hi all,
I'm trying to generate a list of flows that have run for a day, with a date and time stamp.
I am trying to determine which "parent" flow has spawned a "child" flow and from my investigations so far I think I am only going to be able to do that based on the date/time the flows have run.
Thanks,
Michael
This is the powershell run to get the full list of Flows:
Install-Module -Name Microsoft.PowerApps.Administration.PowerShell
Install-Module -Name Microsoft.PowerApps.PowerShell -AllowClobber
Get-AdminFlow
Thank you for the update,
Could you provide the PowerShell script in case anyone else could benefit from the script
Thanks
Thanks, I will take a look at the COE.
However, with Powershell I was able to generate a list of all Flows in the environment. In the child flow instances I found a GUID that referenced the parent flow (x-ms-workflow-name) so was then able to determine the calling flow.