$spsite = New-Object Microsoft.SharePoint.SPSite("http://myshinyportal") $spweb = $site.OpenWeb("aWeb") $splist = $spweb.GetList("aList") $splist.EnableVersioning = $false $splist.Update()
It took quite some searching, but finally colleague-at-customer Bastiaan Kortenbout found a similar case on the Microsoft Connect site. It turns out that PowerShell v2 and Kerberos are having some trouble getting along with each other. PowerShell v1 does now how to be nice to others, but this is a step backward from a functional standpoint. Hopefully Microsoft will fix this soon!
No comments:
Post a Comment