gpt4 book ai didi

powershell - 在 PowerShell 中使用 Chocolatey 辅助函数

转载 作者:行者123 更新时间:2023-12-03 13:09:27 25 4
gpt4 key购买 nike

Chocolatey helper functions旨在用于 Chocolatey 包脚本。

NOTE: These scripts are for package scripts, not for use directly in PowerShell. This is in the create packages section, not the using Chocolatey section.



不过有一些有用的辅助函数,例如
Install-ChocolateyPinnedTaskBarItem ,我想在 PowerShell 控制台中尝试。

有什么方法可以在 PowerShell 控制台中运行这些辅助函数吗?

最佳答案

您要导入的内容位于文件中C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1但这也可能取决于用户 - 有人可能会覆盖巧克力安装并将其放在其他文件夹中。
但是您只想在必要时使用相同的辅助函数,否则不会。
您可以在 .ps1 的开头使用以下脚本脚本:

if( -not ( get-command Install-ChocolateyPackage -erroraction silentlycontinue ) ) {
Write-Host "Importing chocolateyInstaller.psm1..."
Import-Module C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1 #-Verbose
}
在这里我正在检查函数 Install-ChocolateyPackage已经导入 - 如果没有 - 然后按默认路径导入。
删除 Write-Host#- Verbose在你不需要那些之后发表评论。

关于powershell - 在 PowerShell 中使用 Chocolatey 辅助函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52258312/

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