You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 6, 2023. It is now read-only.
Removed overkill calls to Select-Object -ExpandProperty (#412)
The script uses the . operator to access properties ($Secret.StartDateTime) except here:
$RemainingDaysCount = $EndDate - $Now |
Select-Object -ExpandProperty Days
It is simpler to write
$RemainingDaysCount = ($EndDate - $Now).Days
0 commit comments