get-content c:\test.html | out-printer
Печать на принтере по умолчанию.
Редактировать:
если вам нужна распечатанная страница htlm:
$ie = new-object -com "InternetExplorer.Application"
$ie.Navigate("c:\test.html")
$ie.ExecWB(6,2)
Редактировать после комментариев:
Я могу запустить это в файле testprint.ps1:
$ie = new-object -com "InternetExplorer.Application"
$ie.Navigate("c:\test.html")
while ( $ie.busy ) { Start-Sleep -second 3 }
$ie.ExecWB(6,2)
while ( $ie.busy ) { Start-Sleep -second 3 }
$ie.quit()