$word = New-Object -comobject word.application
$word.visible = $true
$path = "c:\fso\*"
$files = Get-ChildItem -Path $path -Include *.doc
foreach($file in $files)
{
$file.fullname
$doc = $word.documents.open($file.fullname)
$doc.checkSpelling()
$doc.checkGrammar()
$doc.save()
# закомментируйте что бы не выводило на печать
$doc.printOut()
$doc.close()
}
$word.quit()