gpt4 book ai didi

Powershell 别名位置

转载 作者:行者123 更新时间:2023-12-02 17:12:36 28 4
gpt4 key购买 nike

如果我在工作时运行 PowerShell 并运行命令 alias,这就是我得到的: enter image description here

这些别名存储在哪里,我如何将(我自己的)永久别名添加到该列表?

最佳答案

来自 Get-Alias 文档:

The Get-Alias cmdlet gets the aliases in the current session. This includes built-in aliases, aliases that you have set or imported, and aliases that you have added to your Windows PowerShell profile.

您可以使用 Set-Alias 设置您自己的。例如。来自文档:

PS C:\> Set-Alias -Name list -Value get-childitem

  • 内置 - 无需修改这些。
  • set or imported - 您可以使用 Set-Alias 如上所述。当您关闭 session 时,这将丢失。您还可以在 session 结束时使用 Export-Alias,在新 session 开始时使用 Import-Alias
  • Windows PowerShell Profile - 我建议使用此方法,因为它会在您每次开始新 session 时自动运行。该文档详细介绍了不同的配置文件及其范围(shell 或 ISE 或两者兼而有之?所有用户还是只有您?)

    使用 PowerShell 配置文件的最简单方法:

    • 转到 C:\Users\user\Documents\WindowsPowerShell
      如果 WindowsPowerShell 文件夹不存在,请创建它。
    • 创建包含您的代码的新文件 Profile.ps1。示例如下。

Set-Alias -Name eg -Value www

Function www {
cd "C:\Users\user\Documents\Projects"
}

关于Powershell 别名位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48284587/

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