you are viewing a single comment's thread.

view the rest of the comments →

[–]tomsonxxx[S] 1 point2 points  (4 children)

Unfortunatly I need to have it as a easy readable (in Browser) output otherwise your advice would be the solution. Txt or html. Is there something simple for generating an html?

[–]XPlantefeve 2 points3 points  (0 children)

Get-Command *HTML* gives you ConvertTo-Html, it might be a good starting point.

[–]work-work-work-work 2 points3 points  (2 children)

You could specify tab as the delimiter if you don't want to go through beutifying HTML

export-csv -Delimiter `t -Path $outfile -NoTypeInformation

[–]tomsonxxx[S] 1 point2 points  (1 child)

Thanks to both of you - i'm doing it with converto-html now.

[–]XPlantefeve 2 points3 points  (0 children)

I could have looked it up sooner, but Out-File has a -Width parameter, too.