This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information