I want to remove Add shortcuts to the OneDrive from the SharePoint.

IBN 4,336 Reputation points
2022-09-26T16:24:11.727+00:00

Hello

Please i need your help on this.

I want to remove Add shortcuts to the OneDrive from the SharePoint.

Is there a way to go about it

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
9,745 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Dillon Silzer 54,731 Reputation points
    2022-09-26T16:30:10.56+00:00

    Hi @IBN

    You can do this via PnP PowerShell:

    #Parameters  
    $TenantAdminURL = "https://yourwebsite.sharepoint.com"  
       
    #Connect to PnP Online  
    Connect-PnPOnline -Url $TenantAdminURL -Interactive  
       
    #Disable Add Shortcut to OneDrive  
    Set-PnPTenant -DisableAddToOneDrive $True  
    

    Cited from https://www.sharepointdiary.com/2021/05/how-to-remove-add-shortcut-to-onedrive-in-sharepoint-online.html

    ----------------------------

    If this is helpful please accept answer.