在 Python 中动态编写 PowerShell CmdLets

发布于 2024-11-10 13:55:19 字数 140 浏览 4 评论 0原文

我希望能够使用 IronPython 编写 PowerShell CmdLets,此外,我需要一个 CmdLet 来查看环境并根据内容将 CmdLets 添加到 PowerShell。例如,读取目录,并为其在其中看到的每个文件名添加 CmdLet Remove- 。

I want to be able to write PowerShell CmdLets using IronPython, and furthermore I need one CmdLet to look at the environment and add CmdLets to the PowerShell based on the contents. For example, reading a directory, and adding a CmdLet Remove- for every filename it sees there.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

知你几分 2024-11-17 13:55:19

据我所知这是不可能的!

这里的问题是 IronPython 类不是 CLR 类或与 CLR 类兼容。 CLR 类是静态的,而 IronPython 类是动态的,据我所知,DLR 不提供具有 .net CLR 属性的 IronPython 类,而 CMDLET 开发需要这些属性。

As far as I know it can't be done!

The problem here is that an IronPython class is not a CLR class or compatible with a CLR class. A CLR class is static and an IronPython class is dynamic and the DLR, as far as I know, doesn't for example provide IronPython classes to have .net CLR attributes, which you need for CMDLET development.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文