gpt4 book ai didi

powershell - 如何添加到最初在 PowerShell 中加载的类型?

转载 作者:行者123 更新时间:2023-12-04 00:36:48 25 4
gpt4 key购买 nike

如何添加到 PowerShell 启动时加载的 .NET 程序集列表?

最佳答案

如果您使用的是 PowerShell 2.0,请使用 Add-Type cmdlet 添加程序集,例如:

Add-Type -AssemblyName System.Windows.Forms

您可以使用 AssemblyName 参数添加标准 .NET 程序集之一。如果您有自己的自定义程序集并希望始终加载,请使用 -Path 参数,例如:

Add-Type -Path "$home\foo.dll"

从您的配置文件调用 Add-Type cmdlet,以确保添加的程序集中包含的 .NET 类型在您的 PowerShell session 中始终可用。有关配置文件的更多信息,请执行:

Get-Help about_profiles

关于powershell - 如何添加到最初在 PowerShell 中加载的类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1517310/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com