如何在 Windows shell 中显示当前别名值?

如何在 Windows shell 中显示当前别名值?

我想知道当前 Windows Shell 中别名的值是多少python。我该怎么做?

答案1

在 powershell 中,使用:

(Get-Command python).Source

答案2

要显示别名的值,可以输入:

where python

答案3

也可以在注册表下重新路由

LOCAL_MACHINE\software\Microsoft\Windows NT\CurrentVersion\Image 文件执行选项

另一种观察方法是使用关联

assoc .py   -> returns eg Python
ftype Python

相关内容