Powershell one-liner to check the time on a bunch of servers for DST
Over the weekend I need to check a bunch of servers (mostly Domain Controllers) to see if the DST (Daylight Savings Time) change occurs correctly. I decided to see how I could do it in Powershell and this is what I came up with: Get-Content servers.txt | %{$x = net time $_; …
