question

FedericoCoppola-2569 avatar image
0 Votes"
FedericoCoppola-2569 asked FedericoCoppola-2569 edited

SharePoint Online PowerApps and Automate buttons [Solved]

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



office-sharepoint-online
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

MichaelHan-MSFT avatar image
0 Votes"
MichaelHan-MSFT answered

Hi @FedericoCoppola-2569,

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.







image.png (3.6 KiB)
image.png (2.6 KiB)
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

FedericoCoppola-2569 avatar image
0 Votes"
FedericoCoppola-2569 answered MichaelHan-MSFT commented

Hi @MichaelHan-MSFT,
Thanks for your reply!

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

Best regards :)

· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Hi @FedericoCoppola-2569,

If my reply helps you, you could click "Accept Answer" and upvote it.

0 Votes 0 ·
FedericoCoppola-2569 avatar image
0 Votes"
FedericoCoppola-2569 answered

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

Regards
Federico

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.