Powershell Script to Copy the value of one column to another column in the same SharePoint List . $site = new-object Microsoft.SharePoint.SPSite(" http://localhst ") $web = Get-SPWeb -Identity http://localhst $list =$web.Lists[" List/Library Name "] $items = $list.items foreach ($item in $items) { $sourcevalue = $item[" Column 1 "] $item[" Column 2 "] = $sourcevalue write-host $sourcevalue $item.update() } $list.update()
Enterprise AI & Cloud Architecture is a thought-leadership platform focused on AI-driven, cloud-based enterprise systems. It examines advanced architectures leveraging SharePoint, Microsoft 365, Azure, Power Platform, RAG, and Agentic AI to modernize mission-critical environments in healthcare, research, government, and enterprise organizations.