Forum Discussion
null null
Jun 16, 2017Iron Contributor
Connect-PnPOnline credential: can it use SharePointOnlineCredentials object
$UserName="<username>" $pwd ="<password>" $Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($UserName,(ConvertTo-SecureString $pwd -AsPlainText -Force)) can we u...
- Jun 16, 2017
You can either do this:
$cred = Get-Credential -UserName $username -Message "Please enter password for $username"
or this:
$encpassword = convertto-securestring -String $password -AsPlainText -Force $cred = new-object -typename System.Management.Automation.PSCredential -argumentlist $username, $encpassword
and then connect with:
Connect-PnPOnline -Url $destinationTenantUrl -Credentials $cred
Jun 16, 2017
You can either do this:
$cred = Get-Credential -UserName $username -Message "Please enter password for $username"
or this:
$encpassword = convertto-securestring -String $password -AsPlainText -Force $cred = new-object -typename System.Management.Automation.PSCredential -argumentlist $username, $encpassword
and then connect with:
Connect-PnPOnline -Url $destinationTenantUrl -Credentials $cred