PowerShell - Check Local Time/Date from text List
- Jon Boyette
- Jan 12, 2022
- 1 min read
Save as a ComputerTimeCheck.ps1, This becomes prudent when needing to see if login issues are from a time skew, Populate c:\temp\server.txt with Computers to check time and date settings
$servers = Get-Content c:\temp\servers.txt
ForEach ($server in $servers) {
$time = ([WMI]'').ConvertToDateTime((gwmi win32_operatingsystem -computername $server).LocalDateTime)
$server + ' ' + $time
}
Comments