> ## Documentation Index
> Fetch the complete documentation index at: https://docs.flowforma.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation issues - Granting app permissions

> Fix FlowForma install failures by enabling Azure Access Control and elevating app permissions through appinv.aspx so features like add/update list item work.

## Azure Access Control

FlowForma needs Azure Access Control (ACS) enabled, if it not enable the app can fail to install. To enable it, you will need to download the latest SharePoint Online Management Shell.

Once you have this, you can run the following commands to enable it:

```powershell theme={null}
Connect-SPOService https://Yourtenant-admin.sharepoint.com
Set-SPOTenant -DisableCustomAppAuthentication $false
```

After enabling, allow 5 minutes for it to take effect, you can then return to the SharePoint page and continue the installation.

## Elevating app permissions

A FlowForma app may requires higher permissions in order to complete installation and also to allow certain functionality to work (eg, using App Permissions in the add/update list item rule).

To do this, navigate to [https://yourtenant.sharepoint.com/\_layouts/15/appinv.aspx](https://yourtenant.sharepoint.com/_layouts/15/appinv.aspx) , and you will see the following:

<img src="https://mintcdn.com/flowforma/g56Im1vOp6-ECYen/images/installation/installation-issues/installation-issues-granting-app-permissions/installation-issues-granting-app-permissions-1.png?fit=max&auto=format&n=g56Im1vOp6-ECYen&q=85&s=fcb23da62adc015fa6ed307312dcae15" alt="App permissions request page" width="879" height="446" data-path="images/installation/installation-issues/installation-issues-granting-app-permissions/installation-issues-granting-app-permissions-1.png" />

Insert "2409ef34-9af0-41ea-9565-8b3af816a01b" without quotes into the **App Id** field and click lookup.

The **Title**, **App Domain**, and **Redirect URL** should auto-populate.

<img src="https://mintcdn.com/flowforma/g56Im1vOp6-ECYen/images/installation/installation-issues/installation-issues-granting-app-permissions/installation-issues-granting-app-permissions-2.png?fit=max&auto=format&n=g56Im1vOp6-ECYen&q=85&s=f3cef1950d1f2b0f2baae82a820d8f9f" alt="Auto-populated app details" width="878" height="461" data-path="images/installation/installation-issues/installation-issues-granting-app-permissions/installation-issues-granting-app-permissions-2.png" />

Next you will need to paste in the permissions you wish to allow in XML format.

Paste in the following:

```xml theme={null}
<AppPermissionRequests> 
<AppPermissionRequest Scope="http://sharepoint/content/sitecollection" Right="Manage" /> 
 <AppPermissionRequest Scope="http://sharepoint/content/sitecollection/web" Right="Manage" /> 
</AppPermissionRequests> 
```

Then click **Create** in either top or bottom right.

<img src="https://mintcdn.com/flowforma/g56Im1vOp6-ECYen/images/installation/installation-issues/installation-issues-granting-app-permissions/installation-issues-granting-app-permissions-3.png?fit=max&auto=format&n=g56Im1vOp6-ECYen&q=85&s=84d5bae309de98824c81d6fb3b3ea069" alt="Permission request created" width="1020" height="414" data-path="images/installation/installation-issues/installation-issues-granting-app-permissions/installation-issues-granting-app-permissions-3.png" />
