Setting ForceCheckout on an SPList
Posted
by pk
on Stack Overflow
See other posts from Stack Overflow
or by pk
Published on 2010-04-13T20:49:49Z
Indexed on
2010/04/13
20:53 UTC
Read the original article
Hit count: 267
I'm trying to set the ForceCheckout property on an SPList item and it's just not taking. I'm calling the Update() command as required. All it should take, in essence, is the following two lines.
$myList.ForceCheckout = $false
$myList.Update()
Any ideas why this isn't working? It's remains $true no matter what.
© Stack Overflow or respective owner