Summary: Use Windows PowerShell to report if it is daylight savings time.
How can I use Windows PowerShell to report if it is daylight savings time?
Use the Get-Date cmdlet, and call the IsDaylightSavingTime method from the DateTime object:
(Get-Date).IsDaylightSavingTime()