Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions documentation/Add-PnPFolderUserSharingLink.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Creates a sharing link to share a folder with a list of specified users.
## SYNTAX

```powershell
Add-PnPFolderUserSharingLink -Folder <FolderPipeBind> -Type <PnP.Core.Model.Security.ShareType> -Users <String[]> [-Connection <PnPConnection>]
Add-PnPFolderUserSharingLink -Folder <FolderPipeBind> -ShareType <PnP.Core.Model.Security.ShareType> -Users <String[]> [-Connection <PnPConnection>]
```

## DESCRIPTION
Expand All @@ -33,7 +33,7 @@ This will create an user sharing link for `Test` folder in the `Shared Documents

### EXAMPLE 2
```powershell
Add-PnPFolderUserSharingLink -Folder "/sites/demo/Shared Documents/Test" -Type Edit -Users "john@contoso.onmicrosoft.com","jane@contoso.onmicrosoft.com"
Add-PnPFolderUserSharingLink -Folder "/sites/demo/Shared Documents/Test" -ShareType Edit -Users "john@contoso.onmicrosoft.com","jane@contoso.onmicrosoft.com"
```

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.
Expand Down