Skip to content

Latest commit

 

History

History
89 lines (65 loc) · 2.18 KB

Add-PnPFileOrganizationalSharingLink.md

File metadata and controls

89 lines (65 loc) · 2.18 KB
Module Name schema applicable online version external help file title
PnP.PowerShell
2.0.0
SharePoint Online
PnP.PowerShell.dll-Help.xml
Add-PnPFileOrganizationalSharingLink

Add-PnPFileOrganizationalSharingLink

SYNOPSIS

Creates an organizational sharing link for a file.

SYNTAX

Add-PnPFileOrganizationalSharingLink -FileUrl <String> -Type <PnP.Core.Model.Security.ShareType> [-Connection <PnPConnection>] 

DESCRIPTION

Creates a new organization sharing link for a file.

EXAMPLES

EXAMPLE 1

Add-PnPFileOrganizationalSharingLink -FileUrl "/sites/demo/Shared Documents/Test.docx"

This will create an organization sharing link for Test.docx file in the Shared Documents library which will be viewable by users in the organization.

EXAMPLE 2

Add-PnPFileOrganizationalSharingLink -FileUrl "/sites/demo/Shared Documents/Test.docx" -Type Edit

This will create an organization sharing link for Test.docx file in the Shared Documents library which will be editable by users in the organization.

PARAMETERS

-Connection

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

-FileUrl

The file in the site

Type: String
Parameter Sets: (All)

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ShareType

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?

CreateOnly value is 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

RELATED LINKS

Microsoft 365 Patterns and Practices