2025-01-24 13:37:24 +01:00

11 lines
610 B
PowerShell
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

 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