4

我已经看到了一些与此类似的问题,但还没有找到适合我情况的问题。

我有一个存储在文本文件中的 URL 列表,我需要运行它以查看它们是否返回 404 错误。我正在使用 powershell 并一直在使用这里的示例:http: //gallery.technet.microsoft.com/scriptcenter/Powershell-Script-for-13a551b3#content

我目前正在测试一个到汇合页面的链接,在 Chrome 中观看控制台我可以看到返回的第一个状态是 404 - 未找到,然后是 304、200 的十几个请求。

我猜第一个 404 之后的请求会影响我的结果,我需要脚本根据第一个响应返回。

到目前为止,我已经尝试过 powershell、php 和 javascript 解决方案,但都没有成功。

那么总而言之,有没有一种方法可以仅根据第一个响应返回答案?

剧本:

## The URI list to test 
$URLListFile = "H:\xxx\xxx\urlList.txt"  
$URLList = Get-Content $URLListFile -ErrorAction SilentlyContinue 
  $Result = @() 


  Foreach($Uri in $URLList) { 
  $time = try{ 
  $request = $null 
   ## Request the URI, and measure how long the response took. 
  $result1 = Measure-Command { $request = Invoke-WebRequest -Uri $uri } 
  $result1.TotalMilliseconds 
  }  
  catch 
  { 
   <# If the request generated an exception (i.e.: 500 server 
   error or 404 not found), we can pull the status code from the 
   Exception.Response property #> 
   $request = $_.Exception.Response 
   $time = -1 
  }   
  $result += [PSCustomObject] @{ 
  Time = Get-Date; 
  Uri = $uri; 
  StatusCode = [int] $request.StatusCode; 
  StatusDescription = $request.StatusDescription; 
  ResponseLength = $request.RawContentLength; 
  TimeTaken =  $time;  
  } 

} 
    #Prepare email body in HTML format 
if($result -ne $null) 
{ 
    $Outputreport = "<HTML><TITLE>Website Availability Report</TITLE><BODY background-color:peachpuff><font color =""#99000"" face=""Microsoft Tai le""><H2> Website Availability Report </H2></font><Table border=1 cellpadding=0 cellspacing=0><TR bgcolor=gray align=center><TD><B>URL</B></TD><TD><B>StatusCode</B></TD><TD><B>StatusDescription</B></TD><TD><B>ResponseLength</B></TD><TD><B>TimeTaken</B></TD</TR>" 
    Foreach($Entry in $Result) 
    { 
        if($Entry.StatusCode -ne "200") 
        { 
            $Outputreport += "<TR bgcolor=red>" 
        } 
        else 
        { 
            $Outputreport += "<TR>" 
        } 
        $Outputreport += "<TD>$($Entry.uri)</TD><TD align=center>$($Entry.StatusCode)</TD><TD align=center>$($Entry.StatusDescription)</TD><TD align=center>$($Entry.ResponseLength)</TD><TD align=center>$($Entry.timetaken)</TD></TR>" 
    } 
    $Outputreport += "</Table></BODY></HTML>" 
} 

$Outputreport | out-file H:\xxx\xxx\test.htm 
Invoke-Expression H:\xxx\xxx\test.htm   
4

1 回答 1

6

如果您希望脚本在第一个错误后退出循环,您可以尝试以下操作:

Foreach($Uri in $URLList) {
  $error.Clear()

  $time = Measure-Command { $request = Invoke-WebRequest -Uri $uri } 2>$null

  if ($error.Count -eq 0) {
    $time.TotalMilliseconds
  } else {
    $error[0].Exception.Response
    break
  }
}

try..catch这里不需要AFAICS 。

于 2013-08-29T14:52:22.420 回答