Created
November 14, 2025 21:08
-
-
Save StartAutomating/3a59f37538548ce6c0656184a41a4c50 to your computer and use it in GitHub Desktop.
Gist How Old Is PowerShell?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .Synopsis | |
| How Old Is PowerShell? | |
| .Description | |
| How Old Is PowerShell? | |
| .Example | |
| ./HowOldIsPowerShell | |
| #> | |
| [Math]::Round( | |
| ([DateTime]::Now - [DateTime]"11/14/2006").TotalDays / 365, 2 | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment