0

I'm trying to create a cmdlet with the name Invoke-Something. But I cannot find the member "Invoke" to put in the attribute:

[Cmdlet(VerbsCommon.Invoke, "Something", SupportsShouldProcess = true)]
                    ^^^^^^

What am I missing?

Nestor
  • 13,706
  • 11
  • 78
  • 119

1 Answers1

0

I've found it: VerbsLifecycle.Invoke

check: http://msdn.microsoft.com/en-us/library/ms714428(VS.85).aspx

Nestor
  • 13,706
  • 11
  • 78
  • 119