Many times there are scenarios when we are given with a excel file or csv from external source which has item names but not the item’s Sitecore IDs. Like we are given a excel with product names and other features which came from SAP resource.
Here the main challenge is to find the Sitecore item under a bucket folder which contains almost 8k items and then apply the logic(update or deletion) using a Powershell script. Getting the item based on item name will be slow and costly operation and the script will be too slow in making the updates. As the data is provided by external source so we don’t have the Item Ids which is the fastest way to find a item in Sitecore.
There are two ways to address this issue.
First way is manual way which requires some excel expertise of Vlookup.
First output a csv with item names and its id by using Powershell as below.
$allItems = Get-ChildItem “master:/sitecore/content/Products” -recurse | where-object {$_.TemplateID -eq “{B0707AC2-64D8-4CA1-AED4-3A1250208295}”}
foreach($itm in $allItems){write-host $itm.Name “;” $itm.ID}
Do a vlookup with the same column values. Here Item name and Product SKU (from SAP) has same column values and we can associate the Item IDs by vlookup from two excels files (one created from Sitecore and other one from external source).

Once you have Ids you can quickly get the item in Powershell and do any kind of update operation on it.
Second way is fully automated way which I recently used to handle this scenario.
First create a hashtable of item names and its Ids and while reading the csv perform the key lookup which is the Product name(Item name in Sitecore) and get the ID. Again once you got the IDs you are free to do any manipulation at item level. It was quite fast and no manual intervention required. No excel expertise required.
foreach($itm in $allItems)
{
try{$hash.Add($itm.Name.ToLower(), $itm.ID) } catch { #Write-Host $itm.Name “;” $_.Exception.Message -BackgroundColor DarkRed }
}
foreach($row in $csv){
$key=$row.”ProducNameColumn”.Trim()
$ids = $hash[$key]
$sitecoreitm= Get-Item “master:” -ID $ids -ErrorAction SilentlyContinue
$sitecoreitm.Editing.BeginEdit()
$sitecoreitm.Fields[“Value”].Value = “some value”;
$sitecoreitm.Editing.EndEdit()
}