Classes/MsUpCat.Class.ps1
class MsUpCat { [string] $Title [string] $Products [string] $Classification [datetime] $LastUpdated [string] $Version [string] $Size [string] $SizeInBytes [string] $Guid [string[]] $FileNames MsUpCat() {} MsUpCat($Row, $IncludeFileNames) { $Cells = $Row.SelectNodes("td") $this.Title = $Cells[1].innerText.Trim() $this.Products = $Cells[2].innerText.Trim() $this.Classification = $Cells[3].innerText.Trim() $this.LastUpdated = (Invoke-MSCatalogParseDate -DateString $Cells[4].innerText.Trim()) $this.Version = $Cells[5].innerText.Trim() $this.Size = $Cells[6].SelectNodes("span")[0].InnerText $this.SizeInBytes = [Int] $Cells[6].SelectNodes("span")[1].InnerText $this.Guid = $Cells[7].SelectNodes("input")[0].Id $this.FileNames = if ($IncludeFileNames) { $Links = Get-UpdateLinks -Guid $Cells[7].SelectNodes("input")[0].Id foreach ($Link in $Links.Matches) { $Link.Value.Split('/')[-1] } } } } |