必要なワークフロー ステータス データは、ドキュメント ライブラリと同じ名前の列にあります。ただし、SharePoint に表示されている列の名前を使用して、その列のデータにアクセスできません。以下のコードでその列にアクセスする場合は、内部列名が必要です。
$list = $SPWeb.lists["document library name here"]
$items = $list.Items
$count = 0
foreach($item in $items)
{
# (typically you put the column name you want where SPWorkflowStatusColumnName is)
if($item["SPWorkflowStatusColumnName"] -eq "Completed")
{
$count = $count + 1
}
}