AussieDave

Results 2 comments of AussieDave

Thanks @spjeff , I gave Connect-PNPOnline a try with this script: ` param( [Parameter(Mandatory=$true, HelpMessage="SharePoint Online portal URL, for example 'https://contoso.sharepoint.com'.")] [ValidateNotNullOrEmpty()] [String] $PortalUrl, [Parameter(Mandatory=$true, HelpMessage="AppID whith access to SharePoint...

Hi @spjeff , I ended up enabling legacy authentication temporarily to run the original script as I was under some time pressure. Using the following command: `Set-SPOTenant -LegacyAuthProtocolsEnabled $True` It...