Skip to content

Commit

Permalink
Merge pull request #6793 from MicrosoftDocs/main
Browse files Browse the repository at this point in the history
Publish main to live, 09/09/2024, 3:30 PM
  • Loading branch information
garycentric authored Sep 9, 2024
2 parents b440529 + 5698649 commit a2d35c9
Showing 1 changed file with 22 additions and 16 deletions.
38 changes: 22 additions & 16 deletions SharePoint/SharePointOnline/deploy-and-configure-on-macos.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
ms.date: 09/05/2024
ms.date: 09/09/2024
title: "Deploy and configure the OneDrive sync app for Mac"
ms.reviewer: cagreen
ms.author: mactra
Expand Down Expand Up @@ -137,6 +137,8 @@ Use the following keys to preconfigure or change settings for your users. The ke
- [DisableAutoConfig](deploy-and-configure-on-macos.md#disableautoconfig)
- [DisableFirstDeleteDialog](deploy-and-configure-on-macos.md#disablefirstdeletedialog)
- [DisableCustomRoot](deploy-and-configure-on-macos.md#disablecustomroot)
- [DisableFirstDeleteDialog](deploy-and-configure-on-macos.md#disablefirstdeletedialog)
- [DisableFREAnimation](deploy-and-configure-on-macos.md#disablefreanimation)
- [DisableOfflineMode](#disableofflinemode)
- [DisableOfflineModeForExternalLibraries](#disableofflinemodeforexternallibraries)
- [DisablePersonalSync](deploy-and-configure-on-macos.md#disablepersonalsync)
Expand All @@ -161,8 +163,6 @@ Use the following keys to preconfigure or change settings for your users. The ke

This setting prevents the users from uploading files to other organizations by specifying a list of allowed tenant IDs. If you enable this setting, the user gets an error if they attempt to add an account from an organization that isn't in the allowed tenants list. If the user is already added the account, the files stop syncing. This setting takes priority over the **BlockTenantList** setting. Do **NOT** enable both settings at the same time.

This setting prevents the users from uploading files to other organizations by specifying a list of allowed tenant IDs. If you enable this setting, the user gets an error if they attempt to add an account from an organization that isn't in the allowed tenants list. If the user has already added the account, the files stop syncing. This setting takes priority over the **BlockTenantList** setting. Do **NOT** enable both settings at the same time.

The parameter for the **AllowTenantList** key is **TenantID** and its value is a string, which determines the tenants for whom the **Allow Tenant** setting is applicable. For the setting to be complete, this parameter also requires a boolean value to be set to it. If the boolean value is set to **True**, the tenant is allowed to sync.

The example for this setting in the .plist file is:
Expand Down Expand Up @@ -267,6 +267,19 @@ The example for this setting in the .plist file is:
<integer>1</integer>
```

### DisableCustomRoot

This setting lets you block users from changing the location of the OneDrive folder on their computer.

If you set this setting's value to **True**, the Change location link is hidden in OneDrive Setup. The OneDrive folder is created in the default location, or in the custom location you specified if you enabled [DefaultFolderLocation](deploy-and-configure-on-macos.md#defaultfolderlocation).

The example for this setting in the .plist file is:

```xml
<key>DisableCustomRoot</key>
<(Bool)/>
```

### DisableFirstDeleteDialog

When a user deletes local files from a synced location, a warning message appears that the files are no longer available across all the devices of the user and on the web. This setting lets you hide the warning message.
Expand All @@ -280,17 +293,18 @@ The example for this setting in the .plist file is:
<integer>1</integer>
```

### DisableCustomRoot
### DisableFREAnimation

This setting lets you block users from changing the location of the OneDrive folder on their computer.
If you set the setting's value to 1, users don't see the Deleted files are removed everywhere reminder when they delete files locally. (This reminder is called "Deleted files are removed for everyone" when a user deletes files from a synced team site.)
This setting lets you prevent the animation from showing during OneDrive Setup.

If you set this setting's value to **True**, the Change location link is hidden in OneDrive Setup. The OneDrive folder is created in the default location, or in the custom location you specified if you enabled [DefaultFolderLocation](deploy-and-configure-on-macos.md#defaultfolderlocation).
If you set the setting's value to 1, animations will not be shown during OneDrive Setup.

The example for this setting in the .plist file is:

```xml
<key>DisableCustomRoot</key>
<(Bool)/>
<key>DisableFREAnimation</key>
<integer>1</integer
```

### DisableOfflineMode
Expand Down Expand Up @@ -347,8 +361,6 @@ To re-enable offline mode in OneDrive on the web for libraries and folders that

This setting blocks users from signing in and syncing files in personal OneDrive accounts. If this setting is configured after a user sets up sync with a personal account, the user gets signed out.

This setting blocks users from signing in and syncing files in personal OneDrive accounts. If this setting has been configured after a user has set up sync with a personal account, the user gets signed out.

If you set the setting's value to **True**, users are prevented from adding or syncing personal accounts.

The example for this setting in the .plist file is:
Expand Down Expand Up @@ -439,11 +451,6 @@ To enable this setting, you must define a string in JSON format:
`[{"ApplicationId":"appId","MaxBundleVersion":"1.1","MaxBuildVersion":"1.0"}]`

"appID" can be either the BSD process name or the bundle display name. "MaxBuildVersion" denotes the maximum build version of the app that can be blocked. "MaxBundleVersion" denotes the maximum bundle version of the app that can be blocked.
To enable this setting, you must define a string in JSON format:

`[{"ApplicationId":"appId","MaxBundleVersion":"1.1","MaxBuildVersion":"1.0"}]`

"appID" can be either the BSD process name or the bundle display name. "MaxBuildVersion" denotes the maximum build version of the app that will be blocked. "MaxBundleVersion" denotes the maximum bundle version of the app that will be blocked.

The example for this setting in the .plist file is:

Expand Down Expand Up @@ -576,7 +583,6 @@ If this setting is enabled, you can specify a TenantName that is the name the fo
TenantName (specified by you)

If you don't specify any TenantName, the folder uses the first segment of the FrontDoorURL as its name. For example, https://</span>Contoso.SharePoint.com uses Contoso as the Tenant Name in the following convention: OneDrive – Contoso
If you don't specify any TenantName, the folder uses the first segment of the FrontDoorURL as its name. For example, https://</span>Contoso.SharePoint.com uses Contoso as the Tenant Name in the following convention: OneDrive – Contoso

The example for this setting in the .plist file is:

Expand Down

0 comments on commit a2d35c9

Please sign in to comment.