Skip to content

Instantly share code, notes, and snippets.

@bitops
Created August 1, 2017 23:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitops/b7c318b8f00653e1135c0f04bfb2e4f6 to your computer and use it in GitHub Desktop.
Save bitops/b7c318b8f00653e1135c0f04bfb2e4f6 to your computer and use it in GitHub Desktop.
My first PowerShell script. Oh yeah.
[CmdletBinding()]
Param (
[Parameter(Mandatory=$True)]
[string]$Foo,
[Parameter(Mandatory=$True)]
[string]$Bar
)
echo "Foo: $Foo"
echo "Bar: $Bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment