I am trying to run a script to return the w32tm status of a host, I run this- $serverlist = @(w32tm /monitor | Where-Object{$_.StartsWith(" NTP:") -and !$_.StartsWith(" NTP: error")}) To get a list of all the NTP sources and their time offsets When I run it as a domain account [...] read more