Module Name | schema | applicable | online version | external help file | title |
---|---|---|---|---|---|
PnP.PowerShell |
2.0.0 |
SharePoint Online |
PnP.PowerShell.dll-Help.xml |
Add-PnPFolderUserSharingLink |
Creates a sharing link to share a folder with a list of specified users.
Add-PnPFolderUserSharingLink -Folder <FolderPipeBind> -ShareType <PnP.Core.Model.Security.ShareType> -Users <String[]> [-Connection <PnPConnection>]
Creates a new user sharing link for a folder.
Add-PnPFolderUserSharingLink -Folder "/sites/demo/Shared Documents/Test" -Users "[email protected]","[email protected]"
This will create an user sharing link for Test
folder in the Shared Documents
library which will be viewable to specified users in the organization.
Add-PnPFolderUserSharingLink -Folder "/sites/demo/Shared Documents/Test" -ShareType Edit -Users "[email protected]","[email protected]"
This will create an user sharing link for Test
folder in the Shared Documents
library which will be editable by specified users in the organization.
Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection.
Type: PnPConnection
Parameter Sets: (All)
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The folder in the site
Type: FolderPipeBind
Parameter Sets: (All)
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The type of sharing that you want to, i.e do you want to enable people in your organization to view the shared content or also edit the content?
Review
and BlocksDownload
values are not supported.
Type: PnP.Core.Model.Security.ShareType
Parameter Sets: (All)
Required: False
Position: Named
Default value: View
Accept pipeline input: False
Accept wildcard characters: False
The UPN(s) of the user(s) to with whom you would like to share the folder.
Type: String[]
Parameter Sets: (All)
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False