Hi,
PowerShell converts $b into a datetime object automatically. Actaully it's (get-date).AddHours(-0,5) -gt [datetime]$b
. You can also try
([datetime]$MD).AddHours(-0.5) -gt [datetime]$b
Best Regards,
Ian Xue
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.