Just heard back from Vivek – apparently this functionality is actually provided by a couple of commandlets that he blogged about earlier – you can read it here. Save the following code in a file called out-ie.msh in \Program Files\Microsoft Command Shell\v1.0 folder: $ie = new-object -com InternetExplorer.Application$ie.navigate(“about:blank”)while ($ie.busy) { sleep 1 }$ie.visible = $true$ie.document.write(“$input”)# […]