All pastes #2076189 Raw Edit

Kazun

public text v1 · immutable
#2076189 ·published 2011-06-07 13:59 UTC
rendered paste body
	$output = @'
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>BODY{background-color:peachpuff;}TABLE{border-width: 1px;border-style: solid;border-color: black;border-collapse: collapse;}TH{border-width: 1px;padding: 0px;border-style: solid;border-color: black;background-color:thistle}TD{border-width: 1px;padding: 0px;border-style: solid;border-color: black;background-color:palegoldenrod}</style>
</head><body>
<table>
<colgroup>
<col/>
<col/>
<col/>
</colgroup>
<tr><th>ComputerName</th><th>Length</th></tr>
'@

foreach ($i in gc comps.txt)
{
	if (Test-Connection $i -Quiet -Count 2)
	{
		switch((gi "\\$i\C$\1\1.txt").length / 1mb)
		{
			{$_ -gt 0 -and $_ -le 2} {$output+="<TR><TD>$i</TD><TD bgcolor=""green"">$_</TD></TR>";break}
			{$_ -gt 2 -and $_ -le 4} {$output+="<TR><TD>$i</TD><TD bgcolor=""yellow"">$_</TD></TR>";break}
			{$_ -gt 4 } { $output+="<TR><TD>$i</TD><TD bgcolor=""red"">$_</TD></TR>";break}
			default {$output+= "<TR><TD>$i</TD><TD>файл не найден</TD></TR>"}
		}
	}
	else {$output+= "<TR><TD>$i - не отвечает</TD><TD>файл не найден</TD></TR>"}
}

	$output += @'
</table>
</body></html>
'@
$output | Out-File Result.html