top of page

PowerShell - Get w32tm or NTP from text list

  • Writer: Jon Boyette
    Jon Boyette
  • Jan 19, 2022
  • 1 min read

Save the below as a GetTime.ps1 or however you selfname.ps1, Populate c:\temp\servers.txt with servers to discover time source

$FromList = Get-Content c:\temp\servers.txt

$servers = $FromList


foreach ($server in $servers){

$ntps = w32tm /query /computer:$server /source

new-object psobject -property @{

Server = $Server

NTPSource = $ntps

}

}


 
 
 

Recent Posts

See All
PowerShell - List All Domain SPNs

Save as same List_ALL_SPNs.ps1 or similar, this LDap calls the Domain for all Service Principal names and accounts related #Build LDAP...

 
 
 
PowerShell - Start-Monitoring

This is a great script used to Monitor and Email if a server is up or down, once ran, and smtp and from address is set, then run:...

 
 
 

Comments


Post: Blog2 Post
  • Facebook
  • Twitter
  • LinkedIn

©2022 by Boyette Technical Services. Proudly created with Wix.com

bottom of page