If you have to make changes to a site content type architecture, the requirement may exist to change a batch of files in a document library from one content type to another. This is usually because you either need to reclassify existing documents to a new content type or move documents to another content type so that unwanted content types can be removed from the list.
The process to change the content type on multiple files using the browser UI is both time consuming and very monotonous. Fortunately, PowerShell can do it for you in a matter of seconds. The script below sets up a function which will look at a document library and modify all files (including those in folders) associated with a specified content type to a different one. Before you can start changing files, run the script below:
function Reset-SPFileContentType ($WebUrl, $ListName, $OldCTName, $NewCTName)
{
#Get web, list and content type objects
$web = Get-SPWeb $WebUrl
$list = $web.Lists[$ListName]
$oldCT = $list.ContentTypes[$OldCTName]
$newCT = $list.ContentTypes[$NewCTName]
$newCTID = $newCT.ID
#Check if the values specified for the content types actually exist on the list
if (($oldCT -ne $null) -and ($newCT -ne $null))
{
#Go through each item in the list
$list.Items | ForEach-Object {
#Check if the item content type currently equals the old content type specified
if ($_.ContentType.Name -eq $oldCT.Name)
{
#Check the check out status of the file
if ($_.File.CheckOutType -eq "None")
{
#Change the content type association for the item
$_.File.CheckOut()
write-host "Resetting content type for file" $_.Name "from" $oldCT.Name "to" $newCT.Name
$_["ContentTypeId"] = $newCTID
$_.Update()
$_.File.CheckIn("Content type changed to " + $newCT.Name, 1)
}
else
{
write-host "File" $_.Name "is checked out to" $_.File.CheckedOutByUser.ToString() "and cannot be modified"
}
}
else
{
write-host "File" $_.Name "is associated with the content type" $_.ContentType.Name "and shall not be modified"
}
}
}
else
{
write-host "One of the content types specified has not been attached to the list"$list.Title
}
$web.Dispose()
}
Once the script has been run, you can use it by typing the following command:
Reset-SPFileContentType –WebUrl <Site URL> –ListName <Document library display name> –OldCTName <Content type to be replaced> –NewCTName <Content type to replace it with>
For example, the following command will step through all files in a document library called “Shared Documents” from the site http://portal/team, and change all documents associated with the “Document” content type to one called “Sales Document”:
Reset-SPFileContentType –WebUrl “http://portal/team” –ListName “Shared Documents” –OldCTName “Document” –NewCTName “Sales Document”
Note that the new content type must be associated with the list before you run the command – the script will not attach it for you (I’ll be providing scripts for attaching and removing content types on lists in future posts).
A potential issue with performing this sort of change is that you may lose some column values during the content type move – even if the same columns exist on both the old and new content type. I did some simple testing with the standard “Title” column, a custom text column, and a choice column and values were successfully retained when I changed the content type – even on non-Microsoft Office documents. However, as I cannot guarantee this will be the case with all columns or column types, I strongly recommend that you attempt the move in a test document library or development environment prior to running the script for real.
Looks cool!
ReplyDeleteThank you! You just saved me several hours of tedious work!
ReplyDeletehttp://practicalsharepoint.blogspot.com
i couldnt run the Above code to change the content type of KPI list,
ReplyDeleteIs that also possible for document libraries?
ReplyDeleteThx
Great Script! i just tested it, and it works awesome! thank you!
ReplyDeleteWill this also work in MOSS 2007? Is there any easy way to loop through all document libraries of a specific library type definition (not just the name of one library) - and provide it a site collection URL where it does this for all sites and libraries within the collection?
ReplyDeleteNope. The SharePoint PowerShell snap-in was built and released for SharePoint 2010. It is not compatible with MOSS 2007 and MS makes no cmdlets available for that SharePoint versions older than 2010.
DeleteYou may still be able to use PowerShell with MOSS 2007, but have to write your own cmdlets that use STSADM or the SharePoint Object Model directly. Phil Child's Reset-SPFileContentTypes script above will not work as-is.
Martin is correct. I have attempted to provide some guidance on using PowerShell with MOSS 2007 in this article: http://get-spscripts.com/2011/03/using-powershell-scripts-with-wss-30.html. So, you could try and replace some of the built-in cmdlets with the examples in this article.
DeleteWe can mimic PowerShell cmdlets for SharePoint 2010 or 2013 in MOSS 2007: How to use PowerShell with SharePoint 2007
DeleteThank you Phil! this is a very useful script for me.
ReplyDeleteDo you have an idea how could i read the TaxonomyFieldValue from OldCTName and put in same column in newCTName? You will help me very much if you have an idea about that :-)
thx
This is a cool script !
ReplyDeleteThanks .
Hi,
ReplyDeleteI have used exact your script. but it does not work. What I mistaking is maybe the files are new. The files added to the list (document library) and then I tried your script.
I think it works only if files have been created for a while.
Hi - I have a site with over 50 sites under it, each with a correspondence document library that has an Email and Document content type. I would like to change the default content type from Document to Email. Would you have a suggestion on an easy way of doing this through powershell?
ReplyDeletethanks you so much.
Thank you! Just what I needed!
ReplyDeleteThank you for the script, very much appreciated. After executing the .ps1 file on powershell it jumps to a new line which means that the script has been executed but when i run the Reset command that calls the function it gives an error "command not recognised as cmdlet"
ReplyDeleteHello,
DeleteI also experienced this behavior. Did you ever get it to work?
Stowe
I have the same problem. Did you find a solution?
DeleteWorked like a charm. Thanks!
ReplyDeleteThis works great, but is it possible to amend so that it changes content type by file extension using {$_.Name -Like $Filetype}?
ReplyDeleteThis works great but is there a way to reset the Content type without impacting the metadate i.e modified date/modified by information . I need to reset the content type for multiple records and it changes the metadata to current which i dont want. Thanks in advance!
ReplyDeleteAmrita, to reset Content Type without updating the metadata, call the $_.SystemUpdate($false) method instead of $_.Update()
ReplyDeleteI tired using " $_.SystemUpdate($false)" so the Modified and Modified By would not change but they still change. I am running the exact script except for the update change. I am running this on SP2013 on prem. is there anything else needed so only the content type changes?
Delete#Change the content type association for the item
$_.File.CheckOut()
write-host "Resetting content type for file" $_.Name "from" $oldCT.Name "to" $newCT.Name
$_["ContentTypeId"] = $newCTID
$_.SystemUpdate($false)
$_.File.CheckIn("Content type changed to " + $newCT.Name, 1)
As always Phil, your an animal! Thanks!@
ReplyDeleteGood day,
ReplyDeleteI am trying use this function on one of my SharePoint Online (Office 365) sites, but cannot seem to get PowerShell to create the Reset-SPFileContentType CmdLet using the script. I am logged onto the correct site and can run other commands provided by the SharePoint Online CmdLet library, but cannot add this one. The script seems to run fine as I have the execution policy set to RemoteSigned. When I run the script, PS just goes back to the prompt ... no errors, no nothing.
Any ideas? This would be incredibly valuable as I have well over 1,000 documents that I need to change the content type.
Thank you,
Richard Sauerbrun
Richard@levredgetech.com
Scottsdale, AZ USA
1-480-766-2814
Hello
ReplyDeleteI tested your change script, it works perfect on document library. I noticed that if you change the content type on document library level but on site level it will not get updated. How can I make it like if if we change content type on document library so on site level it should automatically get updated, Is it possible?
Avian
Hello,
ReplyDeleteI'm trying to change the content type of folders in a library, this is what I have so far but I cant get it to work, can anyone help.
Cheers
Tom
$WebUrl = "http://intranet/sites/dev/test"
$ListName = "test"
$OldCTName = "Folder"
$NewCTName = "Enhanced Folder"
$web = Get-SPWeb $WebUrl
$list = $web.Lists[$ListName]
$oldCT = $list.ContentTypes[$OldCTName]
$newCT = $list.ContentTypes[$NewCTName]
$newCTID = $newCT.ID
if (($oldCT -ne $null) -and ($newCT -ne $null))
{
foreach($folder in $list.Folders)
{
if ($_.ContentType.Name -eq $oldCT.Name)
{
write-host "Resetting content type for folder" $_.Name "from" $oldCT.Name "to" $newCT.Name
$_["ContentTypeId"] = $newCTID
$_.Update()
}
}
}
$web.Dispose()
Its okay I got it working.
Delete$web = Get-SPWeb http://intranet/sites/dev/test
$list = $web.Lists["test"]
$oldCT = $list.ContentTypes["Folder"]
$newCT = $list.ContentTypes["Enhanced Folder"]
$newCTID = $newCT.ID
for($i=0; $i -le $web.Lists.Count; $i++)
{
foreach($folder in $list.folders[$i])
{
if ($folder.ContentType.Name -eq $oldCT.Name)
{
$folder["ContentTypeId"] = $newCTID
$folder.Update()
}
}
}
$web.Dispose()
2015-12-7 xiaozhengm
ReplyDeletemichael kors outlet
michael kors outlet
hollister uk
canada gooses
ray ban
jordan retro 3
louis vuitton
coach outlet
cheap toms
true religion jeans
ghd
coach outlet
mulberry bags
adidas gazelle
north face outlet
longchamp handbags
abercrombie
louis vuitton handbags
michael kors handbags
sac longchamp pliage
coach factory outlet
cheap ray ban sunglasses
michael kors outlet
adidas trainers
louis vuitton outlet
oakley sunglasses
nike trainers
coach factory outlet
nike air max
nike air max shoes
coach outlet
coach factory outlet
jordan 4 toro
toms wedges
sac longchamp
nike roshe runs
louis vuitton bags
coach factory outlet
hermes belt
cheap jordans
Great Article..
ReplyDeleteOnline DotNet Training
.Net Online Training
Dot Net Training in Chennai
IT Training in Chennai
20160301meiqing
ReplyDeletecanada goose jackets
michael kors online
abercrombie
kate spade handbags
coach factory outlet
louis vuitton outlet
louis vuitton outlet
oakley sunglasses
gucci bags
cheap oakleys
tory burch handbags
ray ban sunglasses outlet
louis vuitton
cheap uggs
nfl jerseys wholesale
longchamp outlet
coach factory
gucci shoes
toms shoes
ray ban sunglasses
canada goose jackets
christian louboutin
coach outlet
louis vuitton handbags
louis vuitton handbags
cheap oakley sunglasses
canada goose jackets
air jordan retro
the north face
lebron 12
louis vuitton
20160301meiqing
ReplyDeletecanada goose jackets
michael kors online
abercrombie
kate spade handbags
coach factory outlet
louis vuitton outlet
louis vuitton outlet
oakley sunglasses
gucci bags
cheap oakleys
tory burch handbags
ray ban sunglasses outlet
louis vuitton
cheap uggs
nfl jerseys wholesale
longchamp outlet
coach factory
gucci shoes
toms shoes
ray ban sunglasses
canada goose jackets
christian louboutin
coach outlet
louis vuitton handbags
louis vuitton handbags
cheap oakley sunglasses
canada goose jackets
air jordan retro
the north face
lebron 12
louis vuitton
jianbin0309
ReplyDeletetrue religion jeans outlet
celine outlet
louis vuitton handbags outlet
air jordan shoes for sale
asics,asics israel,asics shoes,asics running shoes,asics israel,asics gel,asics running,asics gel nimbus,asics gel kayano
tiffany outlet
swarovski crystal
michael kors outlet store
michael kors clearance
hermes bags
ray ban sunglasses
marc jacobs
valentino outlet
swarovski crystal
mac cosmetics
cheap nba jerseys
ray ban sunglasses
louis vuitton handbags outlet
ray-ban sunglasses
michael kors outlet store
michael kors outlet online
swarovski outlet
chicago blackhawks
true religion canada
michael kors outlet
ed hardy clothing
longchamp handbags outlet
prada outlet
ralph lauren shirts
michael kors factory store
cheap nfl jersey
rolex watches for sale
cheap nike shoes
mbt shoes outlet
So is there any way to run this to hit every 'documents' library in a site collection or subsite?
ReplyDeletejimmy choo outlet store
ReplyDeletenorth face uk
louis vuitton outlet online
fitflops
adidas nmd uk
lebron james shoes 2016
nike air force black
ugg outlet
oakley sunglasses wholesale
birkenstocks
michael kors outlet
polo ralph lauren outlet online
uggs canada
michael kors outlet online
coach factory outlet online
omega replica watches
ralph lauren uk
uggs canada
longchamp bag
ghd
adidas gazelle
jimmy choo
louboutin shoes
cheap nfl jerseys
cheap ray ban sunglasses
moncler outlet online
abercrombie kids
adidas superstars
mont blanc pens outlet
coach factory outlet online
cheap nfl jerseys
cartier love ring
yeezy boost 350 balck
20160721caiyan
coach factory outlet
ReplyDeletelouis vuitton handbags
louis vuitton outlet
kate spade handbags
timberland outlet
christian louboutin
louis vuitton handbags
polo shirts
fitflops sale clearance
burberry outlet
nike basketball shoes
coach outlet
vans shoes
air jordans
michael kors outlet online
louis vuitton outlet
polo ralph lauren
oakley vault
mont blanc pens for sale
nike factory outlet
fitflops
coach outlet
ray ban sunglasses outlet
cheap oakley sunglasses
cheap rolex watches
louis vuitton
louis vuitton outlet
oakley sunglasses
ghd flat iron
polo ralph lauren outlet
ralph lauren polo
nike roshe flyknit
coach outlet store online
louis vuitton outlet
adidas stan smith
longchamp outlet
louis vuitton outlet
pandora jewelry
coach outlet store online clearances
burberry outlet
20168.8wengdongdong
instyler
ReplyDeletechaussures louboutin
abercrombie & fitch
oakley sunglasses
ralph lauren uk
mlb jerseys
snapbacks wholesale
nike roshe run
coach outlet
louis vuitton handbags
20173.9chenjinyan
longchamp soldes
ReplyDeletechristian louboutin outlet
hollister clothing store
ralph lauren sale
adidas outlet online
coach outlet store online
discount oakley sunglasses
lakers jerseys
kate spade outlet online
coach factory outlet online
0324shizhong
The Article is very interesting and I like it. Agen jual fiforlif Balikpapan , Harga Fiforlif di Balikpapan , Jual Fiforlif Murah di Balikpapan , Manfaat Fiforlif , Distributor Fiforlif di Balikpapan
ReplyDeletecheap oakley sunglasses
ReplyDeleteoakley sunglasses
christian louboutin heels
oakley sunglasses outlet
coach outlet online
oakley vault
nike air max uk
oakley sunglasses cheap
nike air max
valentino heels
hzx20170415
Coach Outlet ED Hardy Outlet Coach Outlet Store Online Kate Spade Outlet Cheap Jordans Coach Purses Coach Outlet Kate Spade Outlet Toms Outlet Louis Vuitton
ReplyDeleteCoach Outlet ED Hardy Outlet Coach Outlet Store Online Kate Spade Outlet Cheap Jordans Coach Purses Coach Outlet Kate Spade Outlet Toms Outlet Louis Vuitton
ReplyDelete
ReplyDeleteاليكم ارضيات ثلاثية الابعاد وهى عبارة عن مواد ابوكسية عالية الجودة ذات صلابة اقوى من الفولاذ ولها لمعان كازجاج ودرجة شفافية جميلة جدا دون اى تكلفة عالية وتكون ارضيات ثلاثية الابعاد ناطقة كالرخام بل وافضل منه لسهولة تركيبها وعدم تعرضها للخدش كالرخام او التلف ان استعملتم المواد الكحولية وتغطى جميع المساحات الممكنة وتلا تقتصر فقط على الميتلك بل يوجد بها العديد من الاشكال والرسومات الجميلة والرائعة .
لماذا عليك اختيار ارضيات ثلاثية الابعاد فى الرياض ؟
من الان قل وداعا للسيراميك والبرسلين والرخام انت الان فى مرحلة التطور والجمال والفن الراقى فانت تنعم بما توصل له العلم الحديث من افكار وما توصل له عالم الديكورات من من اشكال فمن الان قل وداعا للباركيه ومشاكل الماء فتجد ان ارضيات ثلاثية الابعاد فى جدة تعمل على عزل الارضيات عن السطح ولا يوجد بها مسام كارخام او تمتص الماء كالباركيه انما هى عازل حراري ومائى للارضيات وتتميز بالاشكال الرائعه التى تجعل من منزلك التحفة الفنية .
ولمعرفة المزيد يرجى زيارة الرابط التالى
https://beerm-ksa.com/%D8%A7%D8%B1%D...9%D8%A7%D8%AF/
It is great to have visited your website. Thanks for sharing useful information. And also visit my website about health. God willing it will be useful too
ReplyDeleteCara Menghilangkan Bopeng
Obat Penghilang Nyeri Lutut
Obat Penghilang Nyeri Pada Payudara
Pengobatan Herbal Penyakit Rematik
Penyebab Benjolan dileher seperti jakun
Pengobatan penyakit Meningioma
It is a time consuming process to locate a legitimate, high-quality designer Michael Kors Handbags On Sale at a decent price. One brand name that is sought after is the Michael Kors Bags On Sale. Anywhere you see high demand you will find people out to make a quick buck.
ReplyDeleteIt is a time consuming process to locate a legitimate, high-quality designer Michael Kors Handbags Clearance at a decent price. One brand name that is sought after is the Michael Kors Outlet Store. Anywhere you see high demand you will find people out to make a quick buck.
ReplyDeleteDesigner Exposure es un buen lugar para comprar su Bolsos Michael Kors original.
ReplyDeleteThe Woven Tote es también una selección impresionante en el Bolsos Michael Kors Baratos.
Bolso de alta calidad que debe contemplar absolutamente un Bolsos Michael Kors Outlet.
Du kommer att upptäcka en handfull detaljer som du kan förvänta dig att komma över på en vanlig Michael Kors Rea.
Du kan hitta ett antal platser som ger Väska Michael Kors.
Sortimentet är fantastiskt för alla som letar efter en MK Väska.
Håll dina ögon öppna för den här säsongens val som kommer att presenteras under bara några månader och det kommer utan tvekan att bli spektakulärt.
20181018 xiaoou
ReplyDeletepandora charms
pandora jewelry outlet
christian louboutin sale
coach outlet
cheap jordan shoes
kate spade handbags
cheap ray ban sunglasses
ugg outlet online
coach outlet online
kate spade outlet online
Either submit or print: Your structures are gotten by your customer. They can either fill it and submit it electronically or they can take a print variant of it and send them to you via mail or fax. redact-pdf
ReplyDeleteHello, thanks for the article! Very good and works perfectly. I'm new to Powershell.
ReplyDeleteI have a scenario that I need to make this change to a site collection using more than one term, for example:
I need to change all libraries in the site collection to "Action Plan" or "Letter of Commitment" or "Map" for the new content type "Sales Document"
How would you make this change in script? If you can help me ... Thank you in advance!
Rafael
Thanks for provide great informatic and looking beautiful blog, really nice required information & the things i never imagined and i would request, wright more blog and blog post like that for us. Thanks you once agian
ReplyDeleteBirth certificate in delhi
Birth certificate in ghaziabad
Birth certificate in gurgaon
Birth certificate in noida
How to get birth certificate in ghaziabad
how to get birth certificate in delhi
birth certificate agent in delhi
how to download birth certificate
birth certificate in greater noida
birth certificate agent in delhi
Birth certificate delhi
Both things are possible if you carry Michael Kors Handbags Wholesale. If you are a woman who goes for innovative designs, a designer Michael Kors Bags On Sale is perfect for you. Offering a huge selection of chic purses, handbags, shoes and accessories, Michael Kors Outlet Online Store celebrates womanhood in an entirely unique way. Michael Kors Factory Outlet Online Store At Wholesale Price are one of the most sought-after handbags worldwide. We all agree that diamonds are a woman's best friend; however Official Coach Factory Outlet Online are absolutely next in line. To Coach Outlet Sale aficionados, don't fret because we have great news: a discount Official Coach Outlet Online isn't hard to find. If you are a smart shopper looking for a good buy and great deals on your next handbag purchase, you can go to Official Coach Outlet Online.
ReplyDeleteFriendly Links: Toms Shoes Womens | Toms Clearance
Although the student expulsions aren't directly related to Hong Kong and China's move to assert full control over the former British territory, potential sanctions against officials involved in that effort would be a result of Secretary Cheap Nike Air Force 1 of State Mike Pompeo's determination that Hong Kong can no longer be considered autonomous from mainland China. Nike Air Force 1 Cheap Outlet Since it reverted to Chinese rule in 1997. Under Cheap Yeezy Shoes Sale a joint Sino Coach Bags Clearance British agreement on the handover, Hong Kong was to Jordan Shoes For Sale be governed differently than the mainland for 50 years Ray Ban Outlet under a "one country, two systems" policy..
ReplyDeleteThe SLI group had significantly lower global self esteem scores than the group with typical language abilities. The adolescents with SLI were more shy than MK Outlet their peers, but the groups did not differ in their sociability ratings. Regression analysis found New Air Jordan Shoes that language ability was not concurrently predictive of self esteem but shyness was.