Kieran Walsh
Results
2
comments of
Kieran Walsh
This still happens, but for others out there, the simple workaround it: ``` $Date = (get-date).AddDays(-14) Get-ADComputer -Properties OperatingSystem, LastLogonTimeStamp -Filter {'OperatingSystem' -like '*Windows*' -and 'LastLogonTimeStamp' -gt $Date} ```
I also have this problem, but only when you add `New-HTMLTableStyle -Type Table` for example: $Processes = Get-Process | Select-Object -First 5 -Property * New-HTML -TitleText 'Title' -Online -ShowHTML {...