Skip to content

Commit

Permalink
[CorpEmailReport] FIX detection of RU packs above 9
Browse files Browse the repository at this point in the history
  • Loading branch information
kib committed Oct 23, 2015
1 parent 67b7e26 commit c1629b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Get-CorpEmailReport.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3012,7 +3012,7 @@
if ($_ -like "Update Rollup *") {
$tRU = $_.Split(" ")[2]
if ($tRU -like "*-*") { $tRUV=$tRU.Split("-")[1]; $tRU=$tRU.Split("-")[0] } else { $tRUV="" }
if ($tRU -ge $RollupLevel) { $RollupLevel=$tRU; $RollupVersion=$tRUV }
if ([int]$tRU -ge [int]$RollupLevel) { $RollupLevel=$tRU; $RollupVersion=$tRUV }
}
}

Expand Down

0 comments on commit c1629b1

Please sign in to comment.