Created
July 27, 2024 00:36
-
-
Save StartAutomating/df91898a847d7d0470cf80bc4db3f02c to your computer and use it in GitHub Desktop.
Gist a little friendly advice about Shipping Software
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 | |
| Not On a Friday. | |
| .Description | |
| Gist a little bit of friendly advice about the wisdom of shipping software on a Friday. | |
| .Notes | |
| Yes, this runs. | |
| #> | |
| [ValidateScript({ | |
| if ([DateTime]::Now.DayOfWeek -eq 'Friday') { | |
| throw "Not on a Friday!" | |
| } | |
| return $true | |
| })][switch]$ShipIt = $true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
lol good stuff!