Help Save Code2care! 😢

I've lost 99% of my revenue to AdBlockers & AI. Your support could be the lifeline that keeps this passion project alive!

Buy Code2care a Coffee QR Code

Scan to Buy Me A Coffee and help me continue coding for you!

How to Get or Set SharePoint Document ID _dlc_DocId using PowerShell


SharePoint Document Id

Document Id is something which SharePoint internally assigns to documents and maintains a uniqueness for each document.

This Document Id never changes even if the document is moved anywhere else and so can be used as a bookmark to the document.

Just in case you want to access the DocId value or want to change it (not recommended though !!), you can refer to the the internal SharePoint column _dlc_DocId.



Get Doc Id value for a document

$item["_dlc_DocId"]

Set Doc Id value for a document

$item["_dlc_DocId"] = "NewId-12345"

Here is a complete example using PowerShell to access and modify the Document Id

PowerShell script to get and set the Document Id (_dlc_DocId) column

$web = Get-SPWeb http://SharepointSiteUrl
$list = $web.lists["Shared Documents"]

//Get handle of item by ItemId
$item = $list.getitembyid(1)

//Get the Document Id using column _dlc_DocId
$item["_dlc_DocId"]

//Checkout before making changes
$item.File.CheckOut()

//Set the Document Id using column _dlc_DocId
$item["_dlc_DocId"] = "NewId-12345"
$item["_dlc_DocIdUrl"] = "http://SharePointSiteUrl/_layouts/DocIdRedir.aspx?ID=NewId-12345, NewId-12345"
$item.update()

//Check in once changes are completed
$item.File.CheckIn("DocId changed and document checked in")

Note- Once the Document Id is modified, a search crawl (incremental is sufficient) is required in order to associate the changes with the document, else you will get errors when clicking on the Document Id.


Comments:

  • I tried this in my SharePoint Online tenant site, but not working. Can you share updated code for Online Management Shell ? Im using Document ID and came across a case where need to change it.
    anon 13 Mar 2020 20:00:04 GMT
  • not working in SharePoint Online
    anon 27 Jan 2019 05:12:10 GMT
  • Further comments disabled!

Author Info:

Rakesh (He/Him) has a Masters Degree in Computer Science with over 15+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org

Copyright Code2care © 2024 | Privacy Policy | About Us | Contact Us | Search