On a SharePoint Online Library > Folder - What PowerShell command/code can grant permissions to an external user (directly, without adding him to a group)?

frob 4,216 Reputation points
2021-08-13T15:08:29.803+00:00

Hi there

On a SharePoint Online Library > Folder - What PowerShell command/code can grant permissions to an external user (directly, without adding him to a group)?

Thank you.

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
9,945 questions
Windows Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
5,424 questions
{count} votes

Accepted answer
  1. frob 4,216 Reputation points
    2021-08-20T16:28:10.877+00:00

    Hi @Elsie Lu_MSFT

    As a reference to someone who might need this, I was able to get this to work (as long as the external user is already added as a Guest User in AD).

    Set-PnPFolderPermission -List 'ACN' -Identity 'ACN\ACN' -User 'ExtUser@gmail.com' -AddRole 'Contribute'  
    

    Thank you.


1 additional answer

Sort by: Most helpful
  1. Elsie Lu_MSFT 9,776 Reputation points
    2021-08-20T11:06:21.777+00:00

    Hi @frob ,

    Sorry for the delay. I have done some research and testing. Usually we use Add-SPOUser or Pnp commands to add external users. After my research, the current commands cannot meet your needs. It is currently not supported by powershell to grant external user permissions at the folder level.

    We may need to manually authorize external users at the folder level. Thanks for your support and understanding.

    References:
    Add-SPOUser
    Add-PnPUserToGroup
    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 upvote it.

    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.