
Quick tip: SharePoint powershell – get items in a list based on custom columns and other hints
This may be handy when trying to find specific items in a list based on values of various fields: $web = Get-SPWeb http://yourweb $list = $web.Lists[“Your Library Name”] // this is the bit – get items of a particular content type // ? is shorthand for where, and $_ is […]