重现步骤:
使用以下函数和别名在\WindowsPowerShell\Modules\TestAlias\TestAlias.psm1中创建一个TestAlias模块:
function foo
{ write-output 'foo' }
New-Alias -name bar -value foo
在PowerShell session 中:
import-module TestAlias
bar
最佳答案
在PSM1文件中使用Export-ModuleMember
导出别名
Export-ModuleMember -function foo -Alias bar
关于powershell - 无法在脚本模块中创建PowerShell别名,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1978355/