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()


Comments

Popular posts from this blog

SharePoint 2013: Error updating managed account credentials

Error deploying Nintex workflow: An item with the same key has already been added