This is a handy URL to get the current date/time via RESTful interface based on latitude/longitude, time zone, IP address and other ways. The web site API information is at https://timeapi.io/swagger/index.html.
PowerShell
I just want to get the current time in my city and it want it corrected for EDT or EST.
Invoke-RestMethod -uri "https://timeapi.io/api/time/current/coordinate?latitude=35&longitude=-78" -outfile "c:\temp\time.txt"
Returns the following contents in a file (I added the newlines to make it easier to read here).
{"year":2025,"month":3,"day":12,"hour":11,"minute":47,"seconds":10,"milliSeconds":72, "dateTime":"2025-03-12T11:47:10.0728323","date":"03/12/2025","time":"11:47", "timeZone":"America/New_York","dayOfWeek":"Wednesday","dstActive":true}
Note that it took about 6 seconds to get the file updated after the command was issued.