Dec 07 2017 06:04 AM
We have turned off the licenses for Flow, but the button is still there in OneDrive and other SharePoint libraries. Any idea how we can remove the flow button from our environment?
Dec 07 2017 07:55 AM
I think it's not enough to remove Flow licenses in order to hide Flow button from ODFB and SPO document libraries....adding here @Chris McNulty
Jan 08 2018 09:07 PM
Juan,
is there a solution to this? How to hide the flow button in document libraries?
Jan 08 2018 10:15 PM
Ey Gilbert, no to my knowledge but let's see if @StephenRice can say something here (ODFB part)
Jan 08 2018 10:17 PM
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.
Jan 08 2018 10:19 PM
Jan 08 2018 10:21 PM
SolutionThanks Paul.
I just read https://techcommunity.microsoft.com/t5/SharePoint/PowerApps-and-Flow-buttons-are-graduating-out-of-p... where @Kerem Yuceturk extensively talks about the reasoning behind having the flow and powerapps menu items.
Aug 08 2018 11:20 AM
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();
May 24 2019 01:42 PM
@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.
Jan 08 2018 10:21 PM
SolutionThanks Paul.
I just read https://techcommunity.microsoft.com/t5/SharePoint/PowerApps-and-Flow-buttons-are-graduating-out-of-p... where @Kerem Yuceturk extensively talks about the reasoning behind having the flow and powerapps menu items.