Update Created By (Author) column of SharePoint document using PowerShell

Modify the Created By (Author) site column using PowerShell script

The below script will update the "Created By" site column (also known as document Author) of a SharePoint document or list item.

?? Note - This requires updating the Author and Editor attributes both.

$spWeb = Get-SPWeb -Identity "http://sharepoint_site_url"
$spList = $spWeb.Lists["Shared Documents"]
$spItem = $spList.GetItemById(1)

$SPFieldUserValue = New-Object Microsoft.SharePoint.SPFieldUserValue($SPWeb,1, "LastName, FirstName")

$spItem["Author"] = $SPFieldUserValue
$spItem["Editor"] = $SPFieldUserValue
$spItem.Update()

Make sure you specify the username correctly.


This is not an AI-generated article but is demonstrated by a human.

Please support independent contributors like Code2care by donating a coffee.

Buy me a coffee!

Buy Code2care a Coffee!

Comments & Discussion

Facing issues? Have questions? Post them here! We're happy to help!