0

我创建了一个自定义 Powershell 提供程序。但是,目前人们必须执行几个步骤才能使其在用户的计算机上运行:

  1. 配置 Powershell 以针对 .Net 4 运行(在 c:\Windows\System32\WindowsPowerShell\v1.0 中添加配置文件)
  2. 添加自定义格式化程序(到 System32 的 c:\Windows\System32\WindowsPowerShell\v1.0)。
  3. 注册管理单元。

其余设置步骤由自定义 powershell 脚本完成。

我想知道是否有人可以分享他们在简化流程方面的经验。理想情况下,我希望人们从单个命令运行(理想情况下是完成上述所有步骤的 CommandLet。

有没有人可以分享任何链接或建议或最佳实践?

4

1 回答 1

1

我发现以下片段可能会有所帮助。

VS 命令提示符变量

对于 Visual Studio 命令,您可以尝试 Lee Holmes 的http://poshcode.org/2176或 Powershell Communit 扩展 (PSCVX)。都来自https://superuser.com/questions/104868/run-visual-studio-command-line-tools-in-windows-powershell

之后,它只是格式化程序和/或注册管理单元。

配置 Powershell 以使用 .Net4

如何使用 .NET 4 运行时运行 PowerShell?

于 2012-08-28T12:12:59.913 回答