Dies ist die 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")
}
}
aber was ich tun möchte, ist so etwas wie in c #
catch( WebException ex)
{
Log(ex.ToString());
}
Ist das möglich?
powershell
try-catch
Medo
quelle
quelle