我有以下代码比较两个日期。是否可以忽略$ExpirationDate
和$EndDate
附带的时间?
if(((get-date $ExpirationDate).Date -gt (get-date $EndDate).Date) -And $userAccountControl -eq "512")
答案 0 :(得分:2)
我为AD帐户状态544添加了elseif
,这解决了问题。
elseif(((get-date $ExpirationDate).Date -gt (get-date $EndDate).Date) -And $userAccountControl -eq "544")