Jun 16 2017 01:34 AM
$UserName="<username>"
$pwd ="<password>"
$Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($UserName,(ConvertTo-SecureString $pwd -AsPlainText -Force))
can we use the above credentials inside the bracket below
Connect-PnPOnline –Url $SiteUrl –Credentials (Get-Credential)
Jun 16 2017 01:49 AM
SolutionYou 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 01:49 AM
SolutionYou 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