Calling Powershell Pretty Console Output from c# - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T05:52:08Zhttp://stackoverflow.com/feeds/question/587287http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/587287/calling-powershell-pretty-console-output-from-c3Calling Powershell Pretty Console Output from c#mrbradleyt2009-02-25T18:43:20Z2009-02-26T15:54:52Z
<p>Powershell has some pretty nifty formating modules for displaying objects, arrays, collections, dictionaries, and tabular data.</p>
<p>Since Powershell is all .NET, I'm assuming there is a Assembly containing the logic for this.</p>
<p><strong>Who can come up with a way to call these powershell formating from .NET:</strong></p>
<p>I'd imagine something like this:</p>
<pre><code>Console.WriteLine(Powershell.DisplayObject(obj))
</code></pre>
http://stackoverflow.com/questions/587287/calling-powershell-pretty-console-output-from-c/589011#5890114Answer by Jeffrey Snover - MSFT for Calling Powershell Pretty Console Output from c#Jeffrey Snover - MSFT2009-02-26T03:47:14Z2009-02-26T03:47:14Z<p>This is how you do it in V2:</p>
<pre><code>PowerShell.Create().AddScript("get-Process |Out-String").Invoke()
</code></pre>
<p>The key thing is to call OUT-STRING.</p>
<p>Experiment! Enjoy! Engage!</p>
<p>Jeffrey Snover [MSFT]
Windows Management Partner Architect</p>
http://stackoverflow.com/questions/587287/calling-powershell-pretty-console-output-from-c/589494#5894941Answer by karl prosser for Calling Powershell Pretty Console Output from c#karl prosser2009-02-26T07:20:45Z2009-02-26T07:20:45Z<p>you might want to control the width of the output with | out-string -width 120 for instance.</p>
http://stackoverflow.com/questions/587287/calling-powershell-pretty-console-output-from-c/591143#5911430Answer by slipsec for Calling Powershell Pretty Console Output from c#slipsec2009-02-26T15:54:52Z2009-02-26T15:55:27Z<p>This might not be where you are going here but check out the Extended Type System.</p>
<p>Here's a good spot to start:
<a href="http://msdn.microsoft.com/en-us/library/ms714419%28VS.85%29.aspx" rel="nofollow">msdn</a>
<a href="http://blogs.msdn.com/powershell/archive/2008/09/06/hate-add-member-powershell-s-adaptive-type-system.aspx" rel="nofollow">PS blog</a>
<a href="http://jtruher.spaces.live.com/Blog/cns!7143DA6E51A2628D!148.entry" rel="nofollow">blog</a></p>