Show-HTML

This is just going to be a quick tip but I have not posted in awhile and thought I would share this little quick hit. PowerShell has a SUPER useful command for rendering variables in PowerShell into HTML called ConvertTo-HTML and of course HTML in general is really easy to spice up a bit as far as the looks go.

How can we show that information to an end user in a pop-up?

Since PowerShell has full .NET access we can pass an HTML string into an embedded WPF WebBrowser?

Usage of the function is:

$HTML = Get-Process | select name,id | ConvertTo-HTML | Out-String
Show-HTML -HTML $HTML

And this is what we would see:

Cool! Now we can start to build some interesting result pages for our scripts or interesting popups to show. Check out a couple of my more simple samples using this same technique:

function Show-HTML ([string]$HTML)
{

    [void][System.Reflection.Assembly]::LoadWithPartialName('presentationframework')
    [xml]$XAML = @'
    <Window
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="PowerShell HTML GUI" WindowStartupLocation="CenterScreen">
            <WebBrowser Name="WebBrowser"></WebBrowser>
    </Window>
'@

    #Read XAML
    $reader=(New-Object System.Xml.XmlNodeReader $xaml) 
    $Form=[Windows.Markup.XamlReader]::Load( $reader )
    #===========================================================================
    # Store Form Objects In PowerShell
    #===========================================================================
    $WebBrowser = $Form.FindName("WebBrowser")

    $WebBrowser.NavigateToString($HTML)

    $Form.ShowDialog()
}

Read More

The story of four digging devices Reading time ~7 minutes

There once was a digger device architect. This is the......

Is it possible to make user stories too small? Reading time ~4 minutes

## Background For those of you who are uninitiated into......

Automatic Open Graph Images with Jekyll and Cloudinary Reading time ~6 minutes

Inspired by an excellent [blog post](https://delba.dev/blog/next-blog-generate-og-image) by [Delba de Oliveira](https://github.com/delbaoliveira)......