PowerShell - 当使用与函数相同的名称覆盖 cmdlet 的名称时,如何在函数中调用 cmdlet?
因此,我有一个名为 update-name 的 cmdlet,我无权更改它。
我创建了一个名为 update-name 的函数(与 cmdlet 名称相同)。如何从同名函数调用 cmdlet?
我尝试了一些方法,但似乎都不起作用。
function update-name {
param([string] something)
#call cmdlet update-name here
}
当它只是函数时,有一种方法可以做到这一点:
$unBackup = 'DefaultUpdateName'
if(!(Test-Path Function:\$unBackup)) {
Rename-Item Function:\Update-Name $unBackup
}
function update-name {
& $unName
}
不幸的是,如果它是 CmdLet,则不起作用。
So I have a cmdlet named update-name that I have no access to change.
I have created a function named update-name (the same name as the cmdlet). How do I call the cmdlet from the function with the same name?
I've tried a few things and none of them seem to work.
function update-name {
param([string] something)
#call cmdlet update-name here
}
There is a way to do it when it is just functions:
$unBackup = 'DefaultUpdateName'
if(!(Test-Path Function:\$unBackup)) {
Rename-Item Function:\Update-Name $unBackup
}
function update-name {
& $unName
}
Unfortunately that doesn't work if it is a CmdLet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 cmdlet 的模块名称来消除名称的歧义:
You the cmdlet's module name to disambiguate the names:
这也能达到目的——谢谢基思·达尔比! http://twitter.com/dahlbyk/status/55341994817503232
This will do the trick as well - thanks Keith Dahlby! http://twitter.com/dahlbyk/status/55341994817503232
您可以使用 代理功能?
Can you use a proxy function?