18 lines
1.1 KiB
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.

 #region Event ScriptBlocks
[String]$tURL= $($tbx_SiteURL.Text)
[String]$srcSP=$($tbx_SourceFolderURL.Text)
[String]$trgSP=$($tbx_TargetFolderURL.Text)
$eventSB = @{
'btn_Start' = @{
Click = {
Connect-PnPOnline -Url $tURL -Interactive
Move-PnPFile -SiteRelativeUrl $srcSP -TargetUrl $trgSP -Force -AllowSchemaMismatch
}
}
}
#endregion Event ScriptBlocks