Document share with external users from SharePoint 2019 on premise

Ashish Joshi 21 Reputation points
2021-11-02T10:18:01.777+00:00

I have SharePoint 2019 On premise. Any ways can I share my documents from one drive to external users?

My aim is to share my Document from SharePoint 2019 on premise to specific external users only for him without anonymously sharing. Is there any way to do this without using cloud product and FBA?

OneDrive Management
OneDrive Management
OneDrive: A Microsoft file hosting and synchronization service.Management: The act or process of organizing, handling, directing or controlling something.
1,136 questions
SharePoint Server Development
SharePoint Server Development
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Development: The process of researching, productizing, and refining new or existing technologies.
1,575 questions
SharePoint Server Management
SharePoint Server Management
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Management: The act or process of organizing, handling, directing or controlling something.
2,810 questions
0 comments No comments
{count} votes

Accepted answer
  1. CaseyYang-MSFT 10,321 Reputation points
    2021-11-03T03:20:01.447+00:00

    Hi @Ashish Joshi ,

    To enable external users sharing, you have to connect your On-Prem SharePoint environment to Azure AD Access Control. And you could configure a federated authentication between Azure Active Directory and SharePoint on-premises. The goal is to allow users to sign in on Azure Active Directory and use their identity to access the SharePoint on-premises sites.

    If you have configured Office Online Server with your SharePoint 2019, here is a workaround to enable anonymous share links in SharePoint server 2019. But this workaround is not supported by Microsoft. It requires Office Online Server as the guest sharing links leverage the web-based Office viewer/editor. You could run the following PowerShell:

    $farm = Get-SPFarm  
    $farm.Properties.Add("GuestSharingEnabled",$true)  
    $farm.Properties.Add("SPO-GuestSharingUIEnabled",$true)  
    $farm.Update()  
    

    For more details:
    Is Sharing with external users allowed in SharePoint 2013 On Premises?
    Enabling Anonymous Share Links in SharePoint Server 2019
    Tutorial: Implement federated authentication between Azure Active Directory and SharePoint on-premises
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    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.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful