
Usually whenever we create a SharePoint online site, i run the following command to disable the MS Flow and Power-app, to prevent users from creating their own Power-app and MS Flows:-
Connect-PnPOnline –Url https://****.sharepoint.com/sites/***/ –Credentials (Get-Credential)
$ctx = Get-PnPContext$ctx.Site.DisableAppViews = $true;
$ctx.ExecuteQuery();$ctx.Site.DisableFlows = $true;
$ctx.ExecuteQuery();
but currently inside a site collection we need to use the Request Sign-Off feature inside our document library. so can we have the Request Sign-Off feature while keeping MS Flow disabled? for example using the office 365 admin >> create Request Sign-Off MS Flow>> disable the MS Flow inside the site collection >> so we will have an existing Request Sign-Off MS Flow but at the same time users can not create their own MS Flow?
Thanks