11 lines
610 B
PowerShell
11 lines
610 B
PowerShell
function moveSP ([String]$srcSite,[String]$destSite){
|
||
|
||
Move-PnPFile -SiteRelativeUrl $srcSite -TargetUrl $destSite -Force -AllowSchemaMismatch
|
||
}
|
||
|
||
function connectSP ([String]$tenantURL){
|
||
|
||
Connect-PnPOnline -Url $tenantURL -Interactive
|
||
}
|
||
#endregion Functions
|