How Old Is PowerShell?
HowOldIsPowerShell.ps1
11 lines 200 B view raw
1<# 2.Synopsis 3 How Old Is PowerShell? 4.Description 5 How Old Is PowerShell? 6.Example 7 ./HowOldIsPowerShell 8#> 9[Math]::Round( 10 ([DateTime]::Now - [DateTime]"11/14/2006").TotalDays / 365, 2 11)