Posts

Showing posts from December, 2017

Track time sync across all domain controllers

I hate always harping on Windows time but since it sucks I can't help myself. I wrote this script to watch the time on all our domain controllers, compare it, and alert me if it's off. Be aware that this version doesn't have a window of larger than 1 minute.  I plan to fix that later. Same as always, create the xml config file in the same folder.  See the end of the script for parameters for the file.  Use at your own risk.  Feel free to do what you want with the script (It would be great if you leave my name associated with this and any other scripts I write, but thats up to you.) NOTE: Please use this as reference ONLY for now.  Until I can add a trigger window all this will do is spam you all week! Param (       [ bool ] $Console = $false       ) <#==============================================================================           File N...