从 Powershell Cmdlet 调用函数
我正在尝试创建一个调用 Powershell 函数的 cmdlet。这可以做到吗?
想法是使用静态 cmdlet 枚举一组数据,然后调用定义的函数为每个项目执行某些操作。我总是可以复制 - 粘贴枚举部分的基本模板,但在修改参数等时很容易出错。
I'm trying to create a cmdlet that calls Powershell function. Can this be done?
Idea is to have static cmdlet that enumerates a set of data and then calls defined function to do something for each item. I can always copy - paste a base template for the enumaration part, but it really easy to make errors while making modification to parameters etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,请使用 PSCmdlet 上的 InvokeCommand 属性(假设您从该基类派生),例如:
请注意,在本例中
somefunc
采用三个参数 (1,2,3) 并且没有管道输入(通过null
第四个参数)。Sure, use the InvokeCommand property on PSCmdlet (assuming you derive from this base class) e.g.:
Note that in this case
somefunc
takes three parameters (1,2,3) and no pipeline input (passnull
for the fourth parameter).