Updates from: 09/20/2024 01:12:08
Service Microsoft Docs article Related commit history on GitHub Change details
SharePoint Change User Storage https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointOnline/change-user-storage.md
Previously updated : 09/01/2023 Last updated : 09/16/2024 Title: "Change a specific user's OneDrive storage space"-+
- seo-marvel-apr2020 - onedrive-toc ms.assetid: 7448173d-a38c-48cf-acbb-09ac1b6237d4
-description: In this article, you'll learn how to change a user's OneDrive storage space.
+description: In this article, you learn how to change a user's OneDrive storage space in Microsoft 365 using either PowerShell or the SharePoint admin center.
# Change a specific user's OneDrive storage space
-As a global or SharePoint admin in Microsoft 365, you can set the OneDrive storage space for a specific user.
-
-> [!NOTE]
-> For info about setting the default storage space, see [Set the default storage space for OneDrive users](set-default-storage-space.md). For info about the storage available for your Microsoft 365 subscription, see the [OneDrive service description](/office365/servicedescriptions/onedrive-for-business-service-description).
+As an IT administrator, you can adjust a user's OneDrive storage space using the SharePoint admin center or PowerShell.
> [!NOTE]
-> If your organization is configured for multi-geo, you need to use PowerShell to change a user's OneDrive storage space. Editing storage limits isn't available in the Microsoft 365 admin center.
+> For setting the default storage space for all users, see [Set the default storage space for OneDrive users](set-default-storage-space.md). For details on available storage for your Microsoft 365 subscription, see the [OneDrive service description](/office365/servicedescriptions/onedrive-for-business-service-description).
> [!IMPORTANT]
-> If a user has run out of storage, consider instructing them to proactively identify and review items that are taking up space by following the instructions at [Manage your OneDrive for work](https://support.microsoft.com/en-us/office/manage-your-onedrive-for-work-or-school-storage-31519161-059c-4764-b6f8-f5cd29f7fe68).
+> If a user has run out of storage, advise them to proactively review and manage their storage. Instructions can be found at [Manage your OneDrive for work](https://support.microsoft.com/office/manage-your-onedrive-for-work-or-school-storage-31519161-059c-4764-b6f8-f5cd29f7fe68).
-## Change a user's storage space in the Microsoft 365 admin center
+## Change storage space in the Microsoft 365 admin center
-1. Sign in to <https://admin.microsoft.com> as a global or SharePoint admin. (If you see a message that you don't have permission to access the page, you don't have Microsoft 365 admin permissions in your organization.)
+1. Sign in to the [Microsoft 365 admin center](https://admin.microsoft.com) with your admin credentials.
-> [!NOTE]
-> If you have Office 365 operated by 21Vianet (China), [sign in](https://login.partner.microsoftonline.cn/). Then, select the Admin tile to open the admin center.
+ > [!NOTE]
+ > For Office 365 operated by 21Vianet (China), [sign in here](https://login.partner.microsoftonline.cn).
-2. In the left pane, select **Users** \> **Active users**.
+2. In the left pane, expand **Users** and select **Active users**.
-3. Select the user.
+3. Select the user whose storage you want to change.
-4. Select the **OneDrive** tab.
+4. Go to the **OneDrive** tab.
-5. Under **Storage used** select **Edit**.
+5. Under **Storage used**, select **Edit**.
-6. Select the **Maximum storage for this user** option, and type the storage limit that you want to use.
+6. Choose the **Maximum storage for this user** option and set the storage limit.
7. Select **Save**.
- ![Screenshot of the OneDrive storage settings in the Microsoft 365 admin center](media/edit-user-storage-limit.png)
-
-When you need cloud storage for individual users beyond the initial 5 TB, additional cloud storage is granted as follows:
+ ![OneDrive storage settings screenshot](media/edit-user-storage-limit.png)
-- When a user has filled their 5 TB of OneDrive storage to at least 90% capacity, Microsoft will increase your default storage space in OneDrive to up to 25 TB per user (admins might set a lower per-user limit if they want to). The storage limit is reset to 5 TB if OneDrive storage utilization drops below 90% of the 5 TB capacity.
+When users need more storage beyond the initial 5 TB, Microsoft increases their storage as follows:
-- For any user that reaches at least 90% capacity of their 25 TB of OneDrive storage, additional cloud storage will be provided as 25 TB SharePoint team sites to individual users. For more information and assistance, contact [Microsoft Support](https://go.microsoft.com/fwlink/?linkid=869559).--- Admins can check for OneDrive eligibility beyond 5 TB via [Check OneDrive site eligibility for increased storage](/sharepoint/troubleshoot/storage/check-storage-increase-eligibility).
+- When a user reaches 90% of their 5 TB capacity, Microsoft increases their storage to up to 25 TB. Admins can set a lower limit if desired.
+- If usage drops below 90%, storage limit resets to 5 TB.
+- For users reaching 90% of their 25 TB capacity, more storage is provided via SharePoint team sites. Contact [Microsoft Support](https://go.microsoft.com/fwlink/?linkid=869559) for assistance.
> [!NOTE]
- > For Office 365 A1 users, the OneDrive storage limit is up to 100 GB. For details, see [Office 365 Education service descriptions](/office365/servicedescriptions/office-365-platform-service-description/office-365-education).
+ > For Office 365 A1 users, storage is limited to 100 GB. For more information, see [Office 365 Education service descriptions](/office365/servicedescriptions/office-365-platform-service-description/office-365-education).
-## Change a user's storage space by using PowerShell
+## Change storage space using PowerShell
1. [Download the latest SharePoint Online Management Shell](https://go.microsoft.com/fwlink/p/?LinkId=255251). > [!NOTE]
- > If you installed a previous version of the SharePoint Online Management Shell, go to Add or remove programs and uninstall "SharePoint Online Management Shell."
+ > Uninstall any previous versions of the SharePoint Online Management Shell before installing the latest version.
-2. Save the following script as a PowerShell file. For example, you could save it to a file named UpdateOneDriveStorage.ps1.
+2. Save the following PowerShell script to a file (for example, you can save it as _UpdateOneDriveStorage.ps1_):
```PowerShell
- $TenantUrl = Read-Host "Enter the SharePoint admin center URL"
- Connect-SPOService -Url $TenantUrl
-
- $OneDriveSite = Read-Host "Enter the OneDrive Site URL"
- $OneDriveStorageQuota = Read-Host "Enter the OneDrive Storage Quota in MB"
- $OneDriveStorageQuotaWarningLevel = Read-Host "Enter the OneDrive Storage Quota Warning Level in MB"
- Set-SPOSite -Identity $OneDriveSite -StorageQuota $OneDriveStorageQuota -StorageQuotaWarningLevel $OneDriveStorageQuotaWarningLevel
- Write-Host "Done"
+ $TenantUrl = Read-Host "Enter the SharePoint admin center URL"
+ Connect-SPOService -Url $TenantUrl
+
+ $OneDriveSite = Read-Host "Enter the OneDrive Site URL"
+ $OneDriveStorageQuota = Read-Host "Enter the OneDrive Storage Quota in MB"
+ $OneDriveStorageQuotaWarningLevel = Read-Host "Enter the OneDrive Storage Quota Warning Level in MB"
+ Set-SPOSite -Identity $OneDriveSite -StorageQuota $OneDriveStorageQuota -StorageQuotaWarningLevel $OneDriveStorageQuotaWarningLevel
+ Write-Host "Done"
```
-3. Open the SharePoint Online Management Shell. Run the script in the location you saved it.
+3. Open the SharePoint Online Management Shell and run the script:
```PowerShell
- PS C:\>.\ UpdateOneDriveStorage.ps1
+ PS C:\>.\UpdateOneDriveStorage.ps1
``` > [!NOTE]
- > If you get an error message about being unable to run scripts, you might need to change your execution policies. For more info about PowerShell execution policies, see [About Execution Policies](/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.1&preserve-view=true).
-
-4. When prompted, enter the SharePoint admin center URL. For example, `https://contoso-admin.sharepoint.com` is the Contoso SharePoint admin center URL.
-
-5. Sign in as a global or SharePoint admin in Microsoft 365.
+ > If you receive an error regarding script execution, you may need to adjust your PowerShell execution policies. For more information, see [About execution policies](/powershell/module/microsoft.powershell.core/about/about_execution_policies).
-6. Enter the OneDrive site URL: For example, `https://contoso-my.sharepoint.com/personal/user_contoso_onmicrosoft_com`.
+4. Enter the required values when prompted, including:
+ - The SharePoint admin center URL (for example, `https://contoso-admin.sharepoint.com`)
+ - The OneDrive site URL (for example, `https://contoso-my.sharepoint.com/personal/user_contoso_onmicrosoft_com`)
+ - Storage Quota in MB
+ - Storage Quota Warning Level in MB
-7. Enter the OneDrive Storage Quota in MB.
+Here's a reference table for MB to TB conversions:
-8. Enter the OneDrive Storage Quota Warning Level in MB.
-
- | MB | TB |
- | - | - |
- | 1048576 | 1 |
- | 2097152 | 2 |
- | 3145728 | 3 |
- | 4194304 | 4 |
- | 5242880 | 5 |
- | 6291456 | 6 |
- | 7340032 | 7 |
- | 8388608 | 8 |
- | 9437184 | 9 |
- | 10485760 | 10 |
+| MB | TB |
+| |--|
+| 1,048,576 | 1 |
+| 2,097,152 | 2 |
+| 3,145,728 | 3 |
+| 4,194,304 | 4 |
+| 5,242,880 | 5 |
> [!NOTE]
-> To change the storage space for multiple users, use PowerShell to [Display a list of OneDrive accounts by using PowerShell](list-onedrive-urls.md) and use [Set-SPOSite](/powershell/module/sharepoint-online/set-sposite?preserve-view=true&view=sharepoint-ps&preserve-view=true) to make the change.
+> To change storage space for multiple users, you can list OneDrive accounts via PowerShell and use the [Set-SPOSite](/powershell/module/sharepoint-online/set-sposite) command to apply changes.
-## Diagnose issues with changing the OneDrive storage
+## Troubleshooting OneDrive storage issues
-If you are attempting to change the OneDrive storage for a user and are not able to do so or the storage amount reverts to the original value, a Microsoft 365 administrator can run tests to determine what might be preventing the storage from changing.
+If you encounter issues when adjusting storage or if the storage amount reverts to its original value, a Microsoft 365 administrator can run diagnostics in the admin center.
-> [!NOTE]
-> If you're an administrator and you're having trouble changing the OneDrive storage for a user or the storage amount reverts to the original value, select **Run Tests** below, which will populate the OneDrive storage quota diagnostic in the Microsoft 365 admin center. These tests will help determine what may be preventing the storage from changing and recommend steps for a resolution.
->> [!div class="nextstepaction"]
->> [Run Tests: Check OneDrive Storage Quota](https://aka.ms/PillarOneDriveQuota)
+1. In the Microsoft 365 admin center, select **Run Tests** to launch the OneDrive storage quota diagnostic.
-> [!NOTE]
-> This diagnostic isnΓÇÖt supported for GCC High, DoD, Microsoft 365 operated by 21Vianet, or Microsoft 365 Education.
+ > [!NOTE]
+ > Diagnostics are unavailable for GCC High, DoD, Microsoft 365 operated by 21Vianet, or Microsoft 365 Education.
+
+2. Follow the recommendations provided by the diagnostic.
-> To disable OneDrive creation for specific users, see [Manage user profiles in the SharePoint admin center](/sharepoint/manage-user-profiles).
+ > [!NOTE]
+ > For information on disabling OneDrive creation for specific users, see [Manage user profiles in the SharePoint admin center](/sharepoint/manage-user-profiles).
SharePoint Enable Conditional Access https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointOnline/enable-conditional-access.md
Previously updated : 10/01/2023 Last updated : 09/18/2024 Title: "Enable conditional access support in the OneDrive sync app"-+
The following are known issues with this release:
Let us know if you run into any problems while using this release.
- **To report a problem**
+ To report a problem
1. Right-click the blue OneDrive cloud icon in the Windows taskbar notification area or macOS menu bar.
SharePoint Enable File Requests https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointOnline/enable-file-requests.md
Previously updated : 10/01/2023 Last updated : 09/16/2024 Title: "Enable File Requests in SharePoint or OneDrive"-+
ms.assetid:
description: Learn how to enable a file request in OneDrive or Sharepoint.
-# Enable File Requests in SharePoint or OneDrive
+# Enable file requests in SharePoint or OneDrive
-With the [file request feature](https://support.microsoft.com/office/create-a-file-request-f54aa7f8-2589-4421-b351-d415fc3b83af) in OneDrive or SharePoint, you can choose a folder where others can upload files using a link that you send them. People you request files from can only upload files; they can't see the content of the folder, edit, delete, or download files, or even see who else has uploaded files.
+With the [file request feature](https://support.microsoft.com/office/create-a-file-request-f54aa7f8-2589-4421-b351-d415fc3b83af) in OneDrive or SharePoint, users can request files by sending a link where others can upload files. When users upload files, they can't view, edit, delete, or download files in the folder or see who else has uploaded.
-Admins can use the SharePoint Online Management Shell to disable or enable the **Request files** feature on OneDrive or SharePoint sites. If there's no change on sharing capability for all sites, then the file request feature can be enabled.
+Admins can manage the **Request files** feature via the SharePoint Online Management Shell.
> [!IMPORTANT]
-> **Request files** is available only if all of the following statement are true. Please contact your admin if you don't see this feature:
+> File request is only available if:
>
-> - You're using OneDrive for work or school accounts.
-> - Your admin has [enabled **Anyone** links for SharePoint](/sharepoint/turn-external-sharing-on-or-off).
-> - Your admin has configured the **View, edit, and upload** permission for **Anyone** links as described in [Advanced settings for **Anyone** links](/sharepoint/turn-external-sharing-on-or-off#advanced-settings-for-anyone-links).
-> - Your admin hasn't configured [Allow only members in specific security groups to share SharePoint and OneDrive files and folders externally](manage-security-groups.md).
-> - This feature is not available for Office 365 operated by 21Vianet, OneDrive for home, or Office 365 Germany.
+> - YouΓÇÖre using OneDrive for work or school.
+> - The admin has [enabled **Anyone** links](/sharepoint/turn-external-sharing-on-or-off).
+> - Folder permissions are set to **View, edit, and upload** for **Anyone** links.
+> - **Allow only specific security groups** isnΓÇÖt enabled.
+> - Not available for Office 365 operated by 21Vianet, OneDrive for home, or Office 365 Germany.
> [!NOTE]
-> In its current state, if you disable **Anyone** links for SharePoint in the SharePoint Admin Center, the ability to turn on **Request files** feature is also disabled at Site, SharePoint and OneDrive level.
+> Disabling **Anyone** links also disables **Request files** on SharePoint and OneDrive.
-## Enable or Disable Request Files for SharePoint
+## Enable or disable request files for SharePoint
-> [!NOTE]
-> If you do not want File Requests to appear on SharePoint sites, you can opt out by running the following SharePoint Online management shell command: "Set-SPOTenant -CoreRequestFilesLinkEnabled $False".
-
-1. Check if you have enabled [**Anyone** links at the tenant level for SharePoint sites](/sharepoint/turn-external-sharing-on-or-off#change-the-organization-level-external-sharing-setting).
-
-2. Ensure folder permissions are set toΓÇ»**View, edit and upload**.
-
- ![Screenshot for folder permissions settings.](media/select-folder.png)
-
-3. Check `CoreRequestFilesLinkEnabled` is set correctly via [SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online).
+To manage **Request files** for SharePoint:
+1. Ensure [**Anyone** links are enabled](/sharepoint/turn-external-sharing-on-or-off#change-the-organization-level-external-sharing-setting).
+2. Set folder permissions to **View, edit, and upload**.
+3. Verify `CoreRequestFilesLinkEnabled` is **True** via the SharePoint Online Management Shell:
- Run `Get-SPOTenant`.
+ - If not set to **True**, use `Set-SPOTenant -CoreRequestFIlesLinkEnabled $True`.
- - Check if `CoreRequestFilesLinkEnabled` is set to **True**. If it isn't set to **True**, run `Set-SPOTenant -CoreRequestFIlesLinkEnabled $True`.
-
- - If this is set to **True**, **Request files** link on the core partition for all SharePoint sites is enabled (not including OneDrive sites). If this value isn't set, **Request files** will only show for OneDrive with **Anyone** links enabled.
-
-4. You can also set the `RequestFilesLink` Expiration by using `Set-SPOTenant -CoreRequestFilesLinkExpirationInDays` (Optional).
+(Optional) Set link expiration using `Set-SPOTenant -CoreRequestFilesLinkExpirationInDays`.
## Enable or Disable Request Files for OneDrive
-1. Check if you have enabled [**Anyone** links at the tenant level for SharePoint sites](/sharepoint/turn-external-sharing-on-or-off#change-the-organization-level-external-sharing-setting).
-
-2. Ensure folder permissions are set toΓÇ»**View, edit and upload**.
-
- ![Screenshot for folder permissions settings.](media/select-folder.png)
-
-3. Configure OneDrive **Anyone** links at tenant level to your desired preference. It's only required that SharePoint **Anyone** links setting are configured to the most permissive (Anyone) at the tenant level.
-
-4. For example, you can set OneDrive sharing capability to **New and Existing guests** and still allow OneDrive File Requests by following the instructions below as long as SharePoint **Anyone** links are turned on.
-
- ![Screenshot for setting OneDrive sharing capability.](media/content.png)
-
-5. Check `OneDriveRequestFilesLinkEnabled` is set correctly via [SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online).
+To manage **Request files** for OneDrive:
+1. Enable [**Anyone** links](/sharepoint/turn-external-sharing-on-or-off#change-the-organization-level-external-sharing-setting).
+2. Set folder permissions to **View, edit, and upload**.
+3. Configure **Anyone** links for OneDrive at the tenant level.
+4. Verify `OneDriveRequestFilesLinkEnabled` is **True** via the SharePoint Online Management Shell:
- Run `Get-SPOTenant`.
+ - If not set to **True**, use `Set-SPOTenant -OneDriveRequestFilesLinkEnabled $True`.
- - Check if `OneDriveRequestFilesLinkEnabled` is set to **True**. If it isn't set to **True**, run `Set-SPOTenant -OneDriveRequestFIlesLinkEnabled $True`.
-
- - If this is set to **True**, **Request files** link on the OneDrive partition for all OneDrive sites will be available. If this value isn't set, the **Request files** link will be disabled on OneDrive.
-
-6. You can also set the **Request files** Links to expire by using `Set-SPOTenant ΓÇô OneDriveRequestFilesLinkExpirationInDays` (Optional).
-
-## Enable or Disable Request Files per site
-
-1. Check if you have enabled [Anyone links at the tenant level for SharePoint sites](/sharepoint/turn-external-sharing-on-or-off#change-the-organization-level-external-sharing-setting).
-
-2. Ensure folder permissions are set toΓÇ»**View, edit and upload** at Tenant Level in SharePoint tenant admin.
+(Optional) Set link expiration using `Set-SPOTenant -OneDriveRequestFilesLinkExpirationInDays`.
- ![Screenshot for folder permissions settings.](media/select-folder.png)
+## Enable or Disable Request Files per Site
-3. Check if `RequestFilesLinkEnabled` is set correctly via [SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online).
+To manage **Request files** for a specific site:
+1. Ensure [**Anyone** links are enabled](/sharepoint/turn-external-sharing-on-or-off#change-the-organization-level-external-sharing-setting).
+2. Set folder permissions to **View, edit, and upload**.
+3. Verify `RequestFilesLinkEnabled` is **True** via the SharePoint Online Management Shell:
- Run `$r=Get-SPOSite -Identity <SiteURL> -Detailed`.
+ - If not set to **True**, use `Set-SPOSite -RequestFIlesLinkEnabled $True`.
- - Check if `RequestFilesLinkEnabled` is set to **True**. If it isn't set to **True**, run `Set-SPOSite -Identity <SiteURL> -RequestFIlesLinkEnabled $True` to enable the feature for that site and set it to **False** to disable it.
+(Optional) Set link expiration using `Set-SPOSite -RequestFilesLinkExpirationInDays`.
-4. You can also set the **Request Files** link Expiration by using `Set-SPOSite -RequestFilesLinkExpirationInDays` (Optional).
-
-For more information on File Requests, see [Create a file request](https://support.microsoft.com/office/create-a-file-request-f54aa7f8-2589-4421-b351-d415fc3b83af).
-
+For more information on file requests, see [Create a file request](https://support.microsoft.com/office/create-a-file-request-f54aa7f8-2589-4421-b351-d415fc3b83af).
SharePoint Exclude Or Uninstall Previous Sync Client https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointOnline/exclude-or-uninstall-previous-sync-client.md
Previously updated : 11/14/2023 Last updated : 09/18/2024 Title: "Control Groove.exe installation when deploying Office using Click-to-Run"
These changes don't affect your organization if you're already using the new One
If your organization provides an Office deployment configuration file to Setup.exe, add this to your config file to exclude Groove in your deployment:
-```
+`
<Product ID="O365ProPlusRetail" > <Language ID="en-us" /> <ExcludeApp ID="Groove" /> </Product>
-```
+`
For more info about configuration options, see [Configuration options for the Office Deployment Tool](/deployoffice/office-deployment-tool-configuration-options).
The following table shows more detail about which Office installations were affe
|**Office version**|**Groove.exe is no longer installed by default**|**Groove.exe is uninstalled on next update if not in use for 30 days**| ||||
-|MSI (all versions) <br/> |Not applicable <br/> |Not applicable <br/> |
-|Office 2013 Click-to-Run <br/> |Not applicable <br/> |Not applicable <br/> |
-|Office 2016 Click-to-Run - Office Insider <br/> |Sept. 2017 - Version 1710 (Build 8530.1000) <br/> |Sept. 2017 - Version 1710 (Build 8530.1000) <br/> |
-|Office 2016 Click-to-Run - Monthly Channel <br/> |Oct. 2017 - Version 1709 (Build 8528.2139) <br/> |Oct. 2017 - Version 1709 (Build 8528.2139) <br/> |
-|Office 2016 Click-to-Run - Semi-Annual Enterprise Channel (Preview) <br/> |Sept. 2018 - Version 1808 (Build 10730.20102) <br/> |Sept. 2018 - Version 1808 (Build 10730.20102) <br/> |
-|Office 2016 Click-to-Run - Semi-Annual Enterprise Channel <br/> |Jan. 2019 - Version 1808 (Build 10730.20264) <br/> |Jan. 2019 - Version 1808 (Build 10730.20264) <br/> |
+|MSI (all versions) |Not applicable |Not applicable |
+|Office 2013 Click-to-Run |Not applicable |Not applicable |
+|Office 2016 Click-to-Run - Office Insider |Sept. 2017 - Version 1710 (Build 8530.1000) |Sept. 2017 - Version 1710 (Build 8530.1000) |
+|Office 2016 Click-to-Run - Monthly Channel |Oct. 2017 - Version 1709 (Build 8528.2139) |Oct. 2017 - Version 1709 (Build 8528.2139) |
+|Office 2016 Click-to-Run - Semi-Annual Enterprise Channel (Preview) |Sept. 2018 - Version 1808 (Build 10730.20102) |Sept. 2018 - Version 1808 (Build 10730.20102) |
+|Office 2016 Click-to-Run - Semi-Annual Enterprise Channel |Jan. 2019 - Version 1808 (Build 10730.20264) |Jan. 2019 - Version 1808 (Build 10730.20264) |
For more info about Office channels, see [Overview of update channels for Microsoft 365 Apps for enterprise]( /deployoffice/overview-update-channels).
SharePoint Files On Demand Mac https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointOnline/files-on-demand-mac.md
Previously updated : 11/14/2023 Last updated : 09/18/2024 Title: "Set Files On-Demand states on Mac"
description: "Learn how to query and set file and folder states when you use One
# Query and set Files On-Demand states on Mac With OneDrive Files On-Demand, files can be in one of three states. Each of these states corresponds to a file attribute state.+ To query the current state of a file or folder, use the following command: - /Applications/OneDrive.App/Contents/MacOS/OneDrive /getpin \<Path to file or folder>
SharePoint Files On Demand Windows https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointOnline/files-on-demand-windows.md
Previously updated : 11/14/2023 Last updated : 09/01/2024 Title: "Set Files On-Demand states in Windows"-+
SharePoint Network Utilization Planning https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointOnline/network-utilization-planning.md
Previously updated : 11/14/2023 Last updated : 09/01/2024 Title: "Network utilization planning for the OneDrive sync app"-+
SharePoint Redirect Known Folders Macos https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointOnline/redirect-known-folders-macos.md
Previously updated : 11/14/2023 Last updated : 09/16/2024 Title: "Redirect and move macOS known folders to OneDrive"
SharePoint Sync Process https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointOnline/sync-process.md
Previously updated : 11/14/2023 Last updated : 09/14/2024 Title: "How sync works"-+
SharePoint Transition From Previous Sync Client https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointOnline/transition-from-previous-sync-client.md
Previously updated : 11/14/2023 Last updated : 09/18/2024 Title: "Transition from the previous OneDrive for Business sync app"-+
SharePoint Cloud Hybrid Search Faq https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointServer/hybrid/cloud-hybrid-search-faq.md
If you plan to configure Cloud hybrid search with HA topologies in SharePoint Se
***What is hybrid federated search and how is it different from Cloud hybrid search?***
+>[!IMPORTANT]
+>Hybrid Federated Search in SharePoint for Microsoft 365 (Inbound), the capability to display search results from SharePoint on-premises content in SharePoint Online, has been retired as of September 2024. Hybrid Federated Search for SharePoint Server (Outbound), the ability to view SharePoint Online search results in SharePoint on-premises, and Cloud hybrid search remain operational. If you need to display search results from external content in SharePoint Online, we recommend you use Microsoft Search Graph Connectors or Cloud hybrid search.
+ Hybrid federated search and Cloud hybrid search are the two hybrid experiences that a search administrator can choose while configuring hybrid search with Microsoft 365. With hybrid federated search solution for SharePoint in Microsoft 365, the results are federated from your search index in SharePoint Server and index in Microsoft 365. SharePoint on-premises crawls on-premises content and SharePoint in Microsoft 365 crawls SharePoint corpus. Post hybrid configurations, when authenticated users submit a query in a search center, a real time query would be fired against both indexes and authorized users will get search results from the Microsoft 365 search index and from the SharePoint Server search index. However, the results are separate and distinct from one another often displayed in separate search verticals or result blocks.
SharePoint Configure Hybrid Federated Search Sharepoint Onlineroadmap https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointServer/hybrid/configure-hybrid-federated-search-sharepoint-onlineroadmap.md
description: "Learn how to configure hybrid federated search from SharePoint in
# Configure hybrid federated search from SharePoint in Microsoft 365 to SharePoint Server - roadmap [!INCLUDE[appliesto-2013-2016-2019-SUB-SPO-md](../includes/appliesto-2013-2016-2019-SUB-SPO-md.md)] +
+>[!IMPORTANT]
+>Hybrid Federated Search in SharePoint for Microsoft 365 (Inbound), the capability to display search results from SharePoint on-premises content in SharePoint Online, has been retired as of September 2024. Hybrid Federated Search for SharePoint Server (Outbound), the ability to view SharePoint Online search results in SharePoint on-premises, and Cloud hybrid search remain operational. If you need to display search results from external content in SharePoint Online, we recommend you use Microsoft Search Graph Connectors or Cloud hybrid search.
-This article provides the roadmap for configuring hybrid search from SharePoint in Microsoft 365 for enterprises to SharePoint Server, which allows your users to use see search results from SharePoint Server when searching from Microsoft 365.
+This article provides the roadmap for configuring hybrid search from SharePoint in Microsoft 365 for enterprises to SharePoint Server, which allows your users to see search results from SharePoint Server when searching from Microsoft 365.
Follow these steps in the order shown. If you already completed a step when you did a different roadmap, skip that step and go to the next.
SharePoint Hybrid Search In Sharepoint https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointServer/hybrid/hybrid-search-in-sharepoint.md
With the [cloud hybrid search solution](learn-about-cloud-hybrid-search-for-shar
## What is hybrid federated search? With the [hybrid federated search solution](learn-about-hybrid-federated-search-for-sharepoint.md) for SharePoint in Microsoft 365, you federate results from your search index in SharePoint Server 2013 and your search index in Office 365. When users enter a query in a search center, they get search results from the Microsoft 365 search index and from the SharePoint Server 2013 search index, and thus get results both from on-premises and Microsoft 365 content. +
+>[!IMPORTANT]
+>Hybrid Federated Search in SharePoint for Microsoft 365 (Inbound), the capability to display search results from SharePoint on-premises content in SharePoint Online, has been retired as of September 2024. Hybrid Federated Search for SharePoint Server (Outbound), the ability to view SharePoint Online search results in SharePoint on-premises, and Cloud hybrid search remain operational. If you need to display search results from external content in SharePoint Online, we recommend you use Microsoft Search Graph Connectors or Cloud hybrid search.
+ ![Figure showing searches from Microsoft 365 getting results from the on-premises search index and the Microsoft 365 index, and searches from the on-premises index getting results from the on-premises search index and the Microsoft 365 index](../media/651bc6ac-5dbb-4266-83d6-be1bba093506.png)
SharePoint Learn About Hybrid Federated Search For Sharepoint https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointServer/hybrid/learn-about-hybrid-federated-search-for-sharepoint.md
description: "With the hybrid federated search solution, you use both your index
[!INCLUDE[appliesto-2013-2016-2019-SUB-SPO-md](../includes/appliesto-2013-2016-2019-SUB-SPO-md.md)]
+>[!IMPORTANT]
+>Hybrid Federated Search in SharePoint for Microsoft 365 (Inbound), the capability to display search results from SharePoint on-premises content in SharePoint Online, has been retired as of September 2024. Hybrid Federated Search for SharePoint Server (Outbound), the ability to view SharePoint Online search results in SharePoint on-premises, and Cloud hybrid search remain operational. If you need to display search results from external content in SharePoint Online, we recommend you use Microsoft Search Graph Connectors or Cloud hybrid search.
+ With the hybrid federated search solution, you use both your index in SharePoint Server and your index in Microsoft 365. Both SharePoint Server and SharePoint in Microsoft 365 Search services can query the search index in the other environment and return federated results. When users search from a Search Center, the search results come from both your search index in SharePoint Server and your search index in Office 365. ![Illustration show search in two environments, one with hybrid federated search and one without.](../media/4f94457c-1678-434e-94eb-5a2aaee68fce.png)
Show search results from SharePoint in Microsoft 365 in a Search Center in Share
### Hybrid federated search results in SharePoint in Microsoft 365 ![Illustration shows the Microsoft 365 search center getting results from the search index in Office 365 and the search index in SharePoint Server](../media/a51187e1-8fb9-4378-a9ee-ed5b210b2e52.png)+
+>[!IMPORTANT]
+>Hybrid Federated Search in SharePoint for Microsoft 365 (Inbound) has been retired as of September 2024.
Show search results from SharePoint Server in a Search Center in SharePoint in Microsoft 365. This scenario requires a reverse proxy device, see [Display hybrid federated search results in SharePoint in Microsoft 365](display-hybrid-federated-search-results-in-sharepoint-online.md).
Show search results from both environments in Search Centers both in SharePoint
## Where do you manage hybrid federated search?
-Because hybrid federated search is based on federating results from the two environments, you manage search separately in each environment, just as you'd do without hybrid federated search set up.
+Because hybrid federated search is based on federating results from the two environments, you manage search separately in each environment, just as you'd do without hybrid federated search setup.
## How does hybrid federated search work?
SharePoint Plan Cloud Hybrid Search For Sharepoint https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointServer/hybrid/plan-cloud-hybrid-search-for-sharepoint.md
description: Setting up cloud hybrid search for SharePoint in Microsoft 365 requ
[!INCLUDE[appliesto-2013-2016-2019-SUB-SPO-md](../includes/appliesto-2013-2016-2019-SUB-SPO-md.md)]
+>[!IMPORTANT]
+>Hybrid Federated Search in SharePoint for Microsoft 365 (Inbound), the capability to display search results from SharePoint on-premises content in SharePoint Online, has been retired as of September 2024. Hybrid Federated Search for SharePoint Server (Outbound), the ability to view SharePoint Online search results in SharePoint on-premises, and Cloud hybrid search remain operational. If you need to display search results from external content in SharePoint Online, we recommend you use Microsoft Search Graph Connectors or Cloud hybrid search.
+ Setting up [cloud hybrid search](learn-about-cloud-hybrid-search-for-sharepoint.md) for SharePoint in Microsoft 365 requires careful planning. This article helps you design a highly reliable, secure and scalable cloud hybrid search solution. ## What search experiences do your users need?
SharePoint Plan Sharepoint Server Hybrid https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointServer/hybrid/plan-sharepoint-server-hybrid.md
After you have determined which hybrid solution is right for you, follow the ass
|:--|:--| |[Plan hybrid SharePoint taxonomy and hybrid content types](plan-hybrid-sharepoint-taxonomy-and-hybrid-content-types.md) <br/> |Learn about how hybrid taxonomy and content types give you a single taxonomy and set of content types that you can share between SharePoint Server and SharePoint in Microsoft 365. <br/> | |[Plan hybrid OneDrive](plan-hybrid-onedrive-for-business.md) <br/> |Use this article to plan for using OneDrive in SharePoint in Microsoft 365 for your users' personal storage. <br/> |
-|[Plan cloud hybrid search for SharePoint in Microsoft 365](plan-cloud-hybrid-search-for-sharepoint.md) <br/> |Learn how to plan for cloud hybrid search. <br/> |
+|[Plan cloud hybrid search for SharePoint in Microsoft 365](plan-cloud-hybrid-search-for-sharepoint.md) <br/> |Learn how to plan for cloud hybrid search. _*Hybrid Federated Search in SharePoint for Microsoft 365 (Inbound) has been retired as of September 2024.*_ Hybrid Federated Search for SharePoint Server (Outbound) and Cloud hybrid search remain operational. <br/> |
|[Plan hybrid profiles](plan-hybrid-profiles.md) <br/> |Learn about hybrid profiles and your options for tying in external profile information. <br/> | |[The extensible hybrid app launcher](the-extensible-hybrid-app-launcher.md) <br/> |Learn how the hybrid extensible app launcher can bring Microsoft 365 tiles to SharePoint Server. <br/> | |[Hybrid site following](hybrid-site-following.md) <br/> |Learn how hybrid site following give you a single followed sites list for SharePoint Server and SharePoint in Microsoft 365. <br/> |