Forum Discussion
Can't remove Flow from OneDrive & SP libraries
- Jan 08, 2018
Thanks Paul.
I just read https://techcommunity.microsoft.com/t5/SharePoint/PowerApps-and-Flow-buttons-are-graduating-out-of-preview/m-p/121526#M10803 where Kerem Yuceturk extensively talks about the reasoning behind having the flow and powerapps menu items.
FLow is delivered directly from Office 365 and does not require extra license unless you want to use Flow a whole lot then you need a license.
So basicly it is out of the box functionality which cannot be disabled at this point.
Thanks Paul.
I just read https://techcommunity.microsoft.com/t5/SharePoint/PowerApps-and-Flow-buttons-are-graduating-out-of-preview/m-p/121526#M10803 where Kerem Yuceturk extensively talks about the reasoning behind having the flow and powerapps menu items.
- Steve HughesAug 08, 2018Copper Contributor
You can actually accomplish by using PowerShell with the PnPOnline module:
Install-Module SharePointPnPPowerShellOnline Connect-PnPOnline –Url <URL> –Credentials (Get-Credential)
$ctx = Get-PnPContext
$ctx.Site.DisableFlows = $true;
$ctx.ExecuteQuery();
- dcoberMay 24, 2019Brass Contributor
Steve Hughes This works for OneDrive but with some caveats.
- It must be run against every OneDrive site
- The account running the script must first be added as a site collection admin
It would be much nicer if there was a tenant-level checkbox in the OneDrive admin center.