SharePoint Online PowerApps and Automate buttons [Solved]

Federico Coppola 1,181 Reputation points
2020-09-17T05:04:10.427+00:00

Hi all,
I am totally noob about SharePoint Online (Office 365).
I have created a subsite to create a "Document Library" (I can say with success!)

I have noted that there are two buttons about PowerApps and Automate.
These buttons appear for example when you are looking files inside folder of a document library.

I have found a partial solution using a powershell procedure (link https://mbangert.de/hide-power-apps-and-power-automate-flow-in-sharepoint-online ), but I have two issues:

  • Powershell steps doesn't hide Automate button, just PowerApp button
  • These two quick button disappear in main site too. I would that they disappear just in this subsite

Have someone find a way to manage it properly?
Thanks
Federico

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
10,011 questions
0 comments No comments
{count} votes

Accepted answer
  1. MichaelHan-MSFT 18,021 Reputation points
    2020-09-17T07:50:45.777+00:00

    Hi @Federico Coppola ,

    Per my test, the powershell would not hide the Power Apps button. In fact, when executing the command it will hide the action “see all apps” but not “Customize forms”. "Customize forms" could not be hidden.

    25327-image.png 25328-image.png

    And to make this only on subsite level, you could use the below command:

    connect-pnponline https://tenant.sharepoint.com/sites/test/subsite  
    $ctx = Get-PnPContext  
    $ctx.Web.DisableAppViews = $true  
    $ctx.Web.DisableFlows = $true  
    $ctx.web.update()  
    $ctx.ExecuteQuery()  
    

    If an Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Federico Coppola 1,181 Reputation points
    2020-09-18T17:30:08.363+00:00

    Hi @MichaelHan-MSFT ,
    Thanks for your reply!

    I hope that Microsoft will permit to customize more this toolbar soon!

    Best regards :)


  2. Federico Coppola 1,181 Reputation points
    2020-09-30T06:45:08.003+00:00

    Thanks!
    I hope that this issue will be solved soon!

    Regards
    Federico

    0 comments No comments