Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > PowerShell

Vista - loading an html string into an IE window

Reply
 
Old 09-09-2006   #1 (permalink)
Karl Prosser


 
 

loading an html string into an IE window

if you haev HTML in a string, how can we put that into an IE window without
having to save it temporarily to a file?

Karl



My System SpecsSystem Spec
Old 09-09-2006   #2 (permalink)
=?Utf-8?B?Um9tYW4gS3V6bWlu?=


 
 

RE: loading an html string into an IE window

You may play with this script/examples:

----- 8< -----

## Out-IE.ps1
## Display HTML input in IE (pipelined or defined by -html )

param (
[string[]]$html)

end
{
$ie = New-object -COM InternetExplorer.Application

$ie.navigate('about:blank')
$ie.Resizable=$True
$ie.StatusBar=$True
$ie.AddressBar=$False
$ie.MenuBar=$False
$ie.Toolbar=$False

if ($html) {
$ie.document.body.innerHTML = $html
}
else {
$ie.document.body.innerHTML = $input
}
$ie.Visible = $True
}

----- 8< -----

Examples:

ls | ConvertTo-Html | Out-IE

Out-IE @"
<html><body><pre>
Hello <b>$($env:username)</b>!
Today is $(get-date)
</pre></body></html>
"@

--
Thanks,
Roman

My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Opening an hidden Window with window.open (HTML) VB Script
IE 8 New Window/Tab not loading Network & Sharing
Error message when clicking on links and extra pop up html window. Vista mail
working on html objects using HTML DOM, VBscript VB Script
HTML String to Word with Header and Footer (ASP.NET and VB.NET) .NET General


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46