Hello,
I need to delete power apps / flow with the filter below
Power apps
1. App ENvironment = Production
2. App Display name Contains "Test"
3. App Created date is on or before " 31/12/2019"
4. App modified date is on or before " 31/12/2019"
5. App owner is empty .
I have done for 2 Where app name contains Test but could not have other
# Get all the flow which contains "Test" in the display name
$flowColl=Get-Flow *test*
# Loop through the flow collection
foreach($flow in $flowColl)
{
# Get the flow ID
$flowName=$flow.FlowName
# Remove the flow
Remove-AdminFlow -FlowName $flowName -Confirm:$false
}
Can someone put the other condition

Report
All responses (
Answers (