SharePoint 2013: Where is my Workflow History list?
I was trying to create a workflow, but the default 'Workflow History' list was nowhere to be see.
It appears that it was hidden, so I used PowerShell to resolve the problem:
$web = Get-SPWeb "http://myweb"
$list = $web.Lists["Workflow History"]
$list.Hidden = $false
$list.Update()
It appears that it was hidden, so I used PowerShell to resolve the problem:
$web = Get-SPWeb "http://myweb"
$list = $web.Lists["Workflow History"]
$list.Hidden = $false
$list.Update()
Comments
Post a Comment