Forum Discussion
Jenkins Nesamony Sundararaj
Jul 03, 2018Brass Contributor
Hide a default Power Apps button in modern UI
Hi,
I tried to Hide flow and Power Apps button from my all Lists using Powershell
Connect-PnPOnline -Url https://jpower4.sharepoint.com/sites/projects
$ctx = Get-PnPContext
$ctx.Site.DisableAppViews = $true;
$ctx.Site.DisableFlows = $true;
$ctx.ExecuteQuery();
It is removed the 'Flow' button and removed the 'Create an app'. But not removed the PowerApps button.
Please help on this.
- Gerry_BrimacombeCopper Contributor
Jenkins Nesamony Sundararaj Did you find a solution for this?