How to Immediately Govern Suspicious Apps and Flows In Power Platform

Daniel Christian
Daniel Christian
1.1 هزار بار بازدید - پارسال - How to Immediately Govern Suspicious
How to Immediately Govern Suspicious Apps and Flows in Power Platform

Hey Everyone,
Every once in a while you run into a situation where apps and flows have either not followed a company policy and hence need to be either disabled or quarantined. Flows can be disabled, however, apps can only be quarantined. Hence in this video we will take a look at how we can do both using PowerShell scripts and also the Center of Excellence toolkit. We will also take a look at how this can be done in bulk using PowerShell scripts.

Table of contents
Introduction 00:00
Using the Power Platform Admin center 00:51
    - Disable the flow 02:15
    - Delete the app 03:13
Using Power Shell script 05:36
- Quarantine app 06:29 (Set-AppAsQuarantined -EnvironmentName $app.Environments -AppName $app.AppID)
- Disable flow 08:50 (Disable-AdminFlow – EnvironmentName $flow.Environments –FlowName $flow.FlowID)
Using Center of Excellence 10:09
- Overview of CoE Toolkit 11:12
- Quarantine the Power Apps App 11:37
Disable in Bulk using Power Shell 13:25
- Where to get the information from CoE Toolkit. 13:54
- The PowerShell script 17:30
Conclusion 19:36

Helpful link(s)
https://learn.microsoft.com/en-us/pow...
https://learn.microsoft.com/en-us/pow...
Disable flows as an admin - How to manage flows as an Administrator
https://learn.microsoft.com/en-us/pow...
https://learn.microsoft.com/en-us/pow...
https://learn.microsoft.com/en-us/pow...


Example of the PowerShell script

---------------Disabling In Bulk-------------------------------

$flows=Import-Csv ‘C:\tempt\flows.csv’
Foreach ($flow in $flows)
{
Disable-AdminFlow – EnvironmentName $flow.Environments –FlowName $flow.FlowID
}

------------------------------------------------------------------------------------------

---------------Quarantining In Bulk-------------------------------

$apps=Import-Csv ‘C:\tempt\apps.csv’
Foreach ($app in $apps)
{
Set-AppAsQuarantined -EnvironmentName $app.Environments -AppName $app.AppID
}

------------------------------------------------------------------------------------------
#powerautomate #PowerPlatformCoE #governance #security

Contact information:
Twitter: Twitter: dchristian19
Facebook: Facebook: www1.christianfamily.biz
Instagram: Instagram: dan.christian.33
LinkedIn: LinkedIn: danchristian19

Join this channel to get access to perks:
https://www.seevid.ir/c/DanielChrist...
پارسال در تاریخ 1402/01/07 منتشر شده است.
1,178 بـار بازدید شده
... بیشتر