# Known issues & solutions

### Problems with Graph Permissions

This command is used to adjust the Entra ID authorizations on the Enterprise app. All delegated rights that are required for a complete export &amp; import are added.

```powershell
Update-M365DSCAllowedGraphScopes -All -Type 'Update' -Environment 'Global'
```

### Problems with DSCConfiguration

This statement activates WinRM for the upload of configurations, which is used for the PowerShell command Start-DSCConfiguration.

```powershell
winrm quickconfig
```

Another possibility for problems regarding the upload could be the standard chunk size of the configuration of DSC. This can be increased with this PowerShell command.

```powershell
Set-Item -Path WSMan:\localhost\MaxEnvelopeSizeKb -Value 8192
```