This is the try catch in PowerShell 2.0
$urls = "http://www.google.com", "http://none.greenjump.nl", "http://www.nu.nl"
$wc = New-Object System.Net.WebClient
foreach($url in $urls)
{
try
{
$url
$result=$wc.DownloadString($url)
}
catch [System.Net.WebException]
{
[void]$fails.Add("url webfailed $url")
}
}
but what I want to do is something like in c#
catch( WebException ex)
{
Log(ex.ToString());
}
Is this possible?
Try something like this:
The exception is in the
$_variable. You might explore$_like this:I think it will give you all the info you need.
My rule: if there is some data that is not displayed, try to use
-force.