gpt4 book ai didi

powershell - 如何永久使用 Powershell 为可执行文件设置别名?

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

在当前 Powershell session 中创建和运行别名有效,

Windows PowerShell
Copyright (C) 2013 Microsoft Corporation. All rights reserved.

PS C:\Windows\system32> new-item alias:eadt -value "C:\adt-bundle-windows-x86_64-20140702\eclipse\eclipse.exe"

CommandType Name ModuleName
----------- ---- ----------
Alias eadt -> eclipse.exe


PS C:\Windows\system32> eadt

但在新 session 中失败:
PS C:\Windows\system32> eadt
eadt : The term 'eadt' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ eadt
+ ~~~~
+ CategoryInfo : ObjectNotFound: (eadt:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

PS C:\Windows\system32>

最佳答案

你应该在你的配置文件中保存你的别名(就像在 Linux 中的 .bashrc 一样)。哈瓦看看 About_profile选择你的。
$Profile var 为您提供配置文件的路径。

它存在由以下给出的 4 个不同的配置文件:

$profile.AllUsersAllHosts
C:\Windows\System32\WindowsPowerShell\v1.0\profile.ps1

$profile.AllUsersCurrentHost
C:\Windows\System32\WindowsPowerShell\v1.0\Microsoft.PowerShellISE_profile.ps1

$profile.CurrentUserAllHosts
C:\Users\JPB\Documents\WindowsPowerShell\profile.ps1

$profile.CurrentUserCurrentHost
C:\Users\JPB\Documents\WindowsPowerShell\Microsoft.PowerShellISE_profile.ps1

关于powershell - 如何永久使用 Powershell 为可执行文件设置别名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24851459/

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