Created
January 22, 2019 19:54
-
-
Save IISResetMe/b3d1f595cc56fc99ac07dbcb393d06d7 to your computer and use it in GitHub Desktop.
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
module PSFSharp.Stuff | |
open System.Management.Automation | |
[<Cmdlet("Get","Stuff")>] | |
type GetStuffCommand() as self = | |
inherit PSCmdlet() | |
override PSCmdlet.ProcessRecord() = | |
self.WriteObject(self.Param) | |
[<Parameter(Mandatory = true)>] | |
member val Param : string = "" | |
with get,set |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment