Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jakobii/b0394ca5c1e98f7349f86459ac84390c to your computer and use it in GitHub Desktop.

Select an option

Save jakobii/b0394ca5c1e98f7349f86459ac84390c to your computer and use it in GitHub Desktop.
$SomeFunction = {
param(
[string]$Name
)
return 'Hi ' + $Name + '!'
}
$Somefunction.Invoke("Jacob")
# Hi Jacob!
$Somefunction | Get-Member
# TypeName: System.Management.Automation.ScriptBlock
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment