Call Page button click event using PowerShell

Using the below PowerShell commands we can open a page and trigger the click event written inside the page. I am using ListItemCollectionPosition to run the while based on the ROW Limit configured in the CAML query.

Migrate data from Source to Destination Library without changing the audit trail column values– PowerShell

```powershell Add-PSSnapin “Microsoft.SharePoint.Powershell” -ErrorAction SilentlyContinue $sourceWebURL = “http://srcurl” $sourceListName = “Source” $destinationWebURL = “http://desurl” $destinationListName = “Destination” $spSourceWeb = Get-SPWeb $sourceWebURL $spDestinationWeb = Get-SPWeb $destinationWebURL $spSourceList = $spSourceWeb.Lists[$sourceListName] $spDestinationList = $spDestinationWeb.Lists[$destinationListName] $RootFolder = $spDestinationList.RootFolder $spSourceItems = $spSourceList.Items