Created
July 20, 2021 19:33
-
-
Save phillipsj/fa9e86f49a46f48077358aa5661f7f14 to your computer and use it in GitHub Desktop.
PowerShell iex param test.
This file contains 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
[CmdletBinding()] | |
param ( | |
[Parameter()] | |
[Switch] | |
$Worker, | |
[Parameter()] | |
[String] | |
$Label, | |
[Parameter()] | |
[String] | |
$Taint, | |
[Parameter()] | |
[String] | |
$Token | |
) | |
Write-Host $Token | |
Write-Host $Label |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment