This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Import PnP PowerShell module to interact with SharePoint Online - if not already installed, run Install-Module PnP.PowerShell | |
Import-Module PnP.PowerShell | |
# Step 1: Connect to the SharePoint Admin Center | |
Connect-PnPOnline -Url https://yourtenantdomain-admin.sharepoint.com -Interactive | |
# Specify the email address to remove | |
$emailToRemove = "[email protected]" # replace with the email address you want to remove | |
# Step 2: Retrieve all OneDrive site URLs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Goal: replicate the deprecated SharePoint-Adobe Integration | |
# setup 2 text columns in SharePoint where this action needs to be performed: "Adobe Sign Status" and "AgreementId" | |
# start a regular typescript project for SharePoint with the command set for library extensions. | |
https://learn.microsoft.com/en-us/sharepoint/dev/spfx/extensions/get-started/building-simple-cmdset-with-dialog-api | |
# have a (supposedly deprecated) Adobe Integration key handy. | |
https://na3.documents.adobe.com/account/accountSettingsPage#pageId::ACCESS_TOKENS | |
# you can use the client-to-server authentication method for app id and thats fine. Be wary of user clicks. |