如何使用 PowerShell 检查日期是否已调整为夏令时?
要检查日期是否已针对夏令时调整,你需要使用 IsDayLightSavingTime() 函数,通过 Get-Date cmdlet。
PS C:\WINDOWS\system32> (Get-Date).IsDaylightSavingTime() False
要详细了解 DST,请查看以下链接。
http://www.webexhibits.org/daylightsaving/b.html
广告
要检查日期是否已针对夏令时调整,你需要使用 IsDayLightSavingTime() 函数,通过 Get-Date cmdlet。
PS C:\WINDOWS\system32> (Get-Date).IsDaylightSavingTime() False
要详细了解 DST,请查看以下链接。
http://www.webexhibits.org/daylightsaving/b.html