How the GET LINK features works in SharePoint Online

Sriram Varadarajan
 
Solution Architect
August 25, 2016
 
Rate this article
 
Views
6041

As we all know, the GET link feature is available in SharePoint Online for quite some time and now with the new look and feel Microsoft has made it’s visibility increased.

Get link in the classic view:

image

Get link in new look and feel:

image

In both the case the functionality remains the same, just the availability of the link differs.

In general we should be seeing 5 different options:

Links for internal sharing:

o Edit link – account required People in your organization can edit, copy, or download the document.

o View link – account required People in your organization can view, copy, or download the document.

o Restricted Link-Only specific people can open the link.

Guest links:

o Edit link – no sign-in required People outside your organization can edit, copy, and download the document.

o View link – no sign-in required People outside your organization can view, copy, and download the document

Note: If guest access is disabled, you’ll see only account required options.

For more details please refer

In some cases we will not be seeing the EDIT link under GET LINK and initially it might look weird but looks like it’s by design and here are my findings on the same;

Analysis

I found that any document library that has “Required documents to check out before they can be edited” checked under versioning settings shall not have edit links by default. This is a by design behavior. 

Category : Office 365, SharePoint

Author Info

Sriram Varadarajan
 
Solution Architect
 
Rate this article
 
Sriram is a Technology Evangelist with 15+ years experience in Microsoft Technologies. He is an enterprise architect working for large pharmaceutical organization which has presence globally with largest Microsoft implementation ...read more
 

How to Create Navigation Links in SharePoint 2013 using PowerShell

Sathish Nadarajan
 
Solution Architect
November 15, 2015
 
Rate this article
 
Views
14551

Again one more snippet of PowerShell, which will be useful in terms of deployment. Creating the Navigation items, though many of us are using the Managed Navigation, even in some of the projects are following the structural Navigation.

In the same manner, I was met with a requirement to create the structural navigation with many Headings and Links and the Audience targeted. It’s a very simple, straight forward requirement. Let us have it here. Am reading the values from the Config XML file, so that it can be used as a reusable component.

 ##================================================================================================
 ## Description	: Create the Structural Navigation
 ## Author		: Sathish Nadarajan
 ## Date			: 19-Oct-2015
 ##================================================================================================
 
 # ============================================ Setup Input Paths ===========================================================
 
  
 $Host.UI.RawUI.WindowTitle = "-- Create Structural Navigation --"
 
 $StartDate = Get-Date
 Write-Host -ForegroundColor White "------------------------------------"
 Write-Host -ForegroundColor White "| Create Structural Navigation |"
 Write-Host -ForegroundColor White "| Started on: $StartDate |"
 Write-Host -ForegroundColor White "------------------------------------"
 
 $LogTime = Get-Date -Format yyyy-MM-dd_hh-mm
 $LogFile = ".CreateStructuralNavigation-$LogTime.rtf"
 
 #start-transcript $logfile
 
 $scriptBase = split-path $SCRIPT:MyInvocation.MyCommand.Path -parent
 Set-Location $scriptBase
 
 $ErrorActionPreference = "Stop"
 
 function AddPowerShellSnapin()
 {
     try
     {
         Write-Host "Adding PowerShell Snap-in" -ForegroundColor Green
         # Try to get the PowerShell Snappin.  If not, then adding the PowerShell snappin on the Catch Block
         Get-PSSnapin "Microsoft.SharePoint.PowerShell" 
     }
     catch
     {
         if($Error[0].Exception.Message.Contains("No Windows PowerShell snap-ins matching the pattern 'Microsoft.SharePoint.PowerShell' were found"))
         {
             Add-PSSnapin "Microsoft.SharePoint.PowerShell"
         }
     }
     Write-Host "Finished Adding PowerShell Snap-in" -ForegroundColor Green
 
 }
 
 
 function AddNavigationLinks
 {
     try 
     {     
         Write-Host "Entering into AddNavigationLinks Method" -ForegroundColor Green 
 
         # Get the SiteURL
         $SiteUrl = $SiteConfig.Config.SiteURL;
 
         # Get the WebURL
         $WebUrl = $SiteConfig.Config.WebURL;
         Write-Host "WebUrl : $WebUrl" -ForegroundColor Green 
 
         # Get the Error Message
         $ErrorMessage = $SiteConfig.Config.ErrorMessage;
 
         # Initialize the Site Object
         $Site = Get-SPSite $SiteUrl
         Write-Host "Site: $Site" -ForegroundColor Green
 
         # Get the Publishing Site based on the SPSite
         $PubSite = New-Object Microsoft.SharePoint.Publishing.PublishingSite($Site)
         Write-Host "Pubsite: $PubSite" -ForegroundColor Green
 
         # Get the SPWeb Object
         $Web = Get-SPWeb $WebUrl
          Write-Host "Web: $Web" -ForegroundColor Green
         
         # Initialize the PublishingWeb based on the SPWeb
         $PubWeb = [Microsoft.SharePoint.Publishing.PublishingWeb]::GetPublishingWeb($Web)
  
         foreach($Heading in $SiteConfig.Config.Headings.Heading)     
         {
             $CreateSPNavigationNode = [Microsoft.SharePoint.Publishing.Navigation.SPNavigationSiteMapNode]::CreateSPNavigationNode
             $headingNode = $CreateSPNavigationNode.Invoke($Heading.Title, $Heading.URL, [Microsoft.SharePoint.Publishing.NodeTypes]::Heading, $Web.Navigation.TopNavigationBar)
             $headingNode.Properties["Audience"] = $Heading.Audience
             $headingNode.Update()
 
             foreach($Link in $Heading.Links.Link)
             {
                 $qlNav1 = $Web.Navigation.TopNavigationBar
 
                 $qlNav1 | select Title, ID
 
                 $qlink = $qlNav1 | where {$_.Title -eq $Heading.Title}
 
                 $linkNode = New-Object Microsoft.SharePoint.Navigation.SPNavigationNode($Link.Title,$Link.URL,$true)
 
                 $qlink.Children.AddAsLast($linkNode)
 
                 $linkNode.Properties["Audience"] = $Link.Audience
 
                 $linkNode.Properties["Description"] = $Link.Description
                 $linkNode.update() 
  
                   
             }
         }
 
         $Web.Update()
     }
 
     catch 
     { 
         Write-Host "Custom Exception Happened : " + $Error[0].Exception.Message -ForegroundColor Red  
     } 
 
 }
 
 try
 {
     $ConfigXmlPath = $scriptBase + "CreateNavigationLinks.xml"
     Write-Host "Read the Config Values" -ForegroundColor Green 
 
     # Get the Content of the Config Xml
     [Xml]$SiteConfig = Get-Content $ConfigXmlPath  
 
     AddPowerShellSnapin
 
     AddNavigationLinks
 
     Write-Host "Script Execution Completed Successfully" -ForegroundColor Green 
 }
 catch
 {
     Write-Host "Custom Exception Happened on Main : " + $Error[0].Exception.Message -ForegroundColor Red  
 }
 

And the Config XML Looks like,

 <?xml version="1.0" encoding="utf-8"?>
 
 <Config>
 
   <WebApplicationURL>http://MyWebApplication/</WebApplicationURL>
 
   <SiteURL>http://MyWebApplication/sites/MyCustomSiteCollection/</SiteURL>
 
   <WebURL>http://MyWebApplication/sites/MyCustomSiteCollection</WebURL>
 
    <ErrorMessage>Some Exception Occured During the Navigation Creation Process</ErrorMessage>
    
   <Headings>
 
     <Heading>
       <Title>TestHeading</Title>
       <URL>Page1.aspx</URL>
 	  <Audience>;;;;PM,TL,IL,C</Audience>
       <Links>
 		<Link>
 			<Title>Link1</Title>
 			<URL>Page2.aspx</URL>
 			<Audience>;;;;PM,TL,IL,C</Audience>
 			<Description>Test Description</Description>
 		</Link>
 	  </Links>
 	  
     </Heading>
 
 	<Heading>
       <Title>TestHeading2</Title>
       <URL>Page3.aspx</URL>
       <Links>
 	  </Links>
     </Heading>
   </Headings>
   
 </Config>
 

Download the Source HERE

 

Happy Coding,

Sathish Nadarajan.

Author Info

Sathish Nadarajan
 
Solution Architect
 
Rate this article
 
Sathish is a Microsoft MVP for SharePoint (Office Servers and Services) having 15+ years of experience in Microsoft Technologies. He holds a Masters Degree in Computer Aided Design and Business ...read more
 

Leave a comment