vrijdag 21 maart 2014

Powershell selecting web propertie bag

Quick tip: To list the value of web properties you can use the following powershell command:
$web = Get-SPWeb
$web.AllProperties.GetEnumerator() | Where-Object { $_.Name -like "tresoar.story.pre*"} | Sort-Object {$_.Name}