Call .NET for temp files

This commit is contained in:
dfinke
2016-02-24 11:06:48 -05:00
parent ca2b4c790f
commit 2ff98d1de5
4 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ function Get-HtmlTable {
$tableIndex=0
)
$r = (Invoke-WebRequest $url)
$r = Invoke-WebRequest $url
$table = $r.ParsedHtml.getElementsByTagName("table")[$tableIndex]
$propertyNames = @()
$totalRows=@($table.rows).count-1