Created
September 22, 2024 04:32
-
-
Save Calvindd2f/ee5d78c1c1e1de488a06831a658df76e to your computer and use it in GitHub Desktop.
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
| function const([string]$Name, [string]$Value) | |
| { | |
| New-Variable -Name $Name -Value $Value -Option Constant -Force -Scope Script | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment