webui/adrep.ps1
$MaxLoginDays = Get-SkPageParam -TagName "d" -Default "" $ReportType = Get-SkPageParam -TagName "r" -Default "" $AccountType = Get-SkPageParam -TagName "a" -Default "" $PageTitle = "AD Reports: Last Login > $MaxLoginDays days" $PageCaption = "AD Reports: Last Login > $MaxLoginDays days" $content = "" $tabset = "" try { switch ($AccountType) { "user" { $users = @(Get-SkAdUsers) $uDates = @($users | Select -ExpandProperty LastLogon) $content = "<table id=table1>" $content += "<tr><th>User Name</th><th>DistinguishedName</th><th>Login</th></tr>" $ulist = $users | Where-Object {(New-TimeSpan -Start $_.LastLogon -End (Get-Date)).Days -gt $MaxLoginDays} foreach ($usr in $ulist) { $ux = Get-SkValueLinkAD -PropertyName "UserName" -Value $($usr.Name) $content += "<tr>" $content += "<td>$ux</td>" $content += "<td>$([string]$usr.DN)</td>" $content += "<td>$([string]$usr.LastLogon)</td>" $content += "</tr>" } $content += "<tr><td colspan=3 class=lastrow>$($ulist.Count) users</td></tr>" $content += "</table>" break; } "computer" { $comps = @(Get-SkAdComputers -SearchType All) $mDates = @($comps | Select -ExpandProperty LastLogon) $content = "<table id=table1>" $content += "<tr><th>Computer Name</th><th>DistinguishedName</th><th>Login</th></tr>" $mlist = $comps | Where-Object {(New-TimeSpan -Start $_.LastLogon -End (Get-Date)).Days -gt $MaxLoginDays} foreach ($m in $mlist) { $cx = Get-SkValueLinkAD -PropertyName "ComputerName" -Value $($m.Name) $content += "<tr>" $content += "<td>$cx</td>" $content += "<td>$([string]$m.DN)</td>" $content += "<td>$([string]$m.LastLogon)</td>" $content += "</tr>" } $content += "<tr><td colspan=3 class=lastrow>$($ulist.Count) computers</td></tr>" $content += "</table>" break; } } # switch } catch { $content = "<table id=table2><tr><td>Error: $($Error[0].Exception.Message)</td></tr></table>" } Write-SkWebContent |