3

我经常使用

ii .

在 PowerShell 中打开 Windows 资源管理器中的当前目录。这曾经一直有效,但现在什么也没有发生。

Invoke-Itemcmdlet 仍然有效。这样做ii somefile.txt会在文本编辑器中打开该文件。但是目录不再起作用了。

另外start .不起作用。使用explorer .确实有效。

跑步

Trace-Command -Name ParameterBinding {ii .} -PSHost

返回

DEBUG: ParameterBinding Information: 0 : BIND NAMED cmd line args [Invoke-Item]
DEBUG: ParameterBinding Information: 0 : BIND POSITIONAL cmd line args [Invoke-Item]
DEBUG: ParameterBinding Information: 0 :     BIND arg [.] to parameter [Path]
DEBUG: ParameterBinding Information: 0 :         Binding collection parameter Path: argument type [String], parameter type [System.String[]],
collection type Array, element type [System.String], no coerceElementType
DEBUG: ParameterBinding Information: 0 :         Creating array with element type [System.String] and 1 elements
DEBUG: ParameterBinding Information: 0 :         Argument type String is not IList, treating this as scalar
DEBUG: ParameterBinding Information: 0 :         Adding scalar element of type String to array position 0
DEBUG: ParameterBinding Information: 0 :         BIND arg [System.String[]] to param [Path] SUCCESSFUL
DEBUG: ParameterBinding Information: 0 : BIND cmd line args to DYNAMIC parameters.
DEBUG: ParameterBinding Information: 0 : MANDATORY PARAMETER CHECK on cmdlet [Invoke-Item]
DEBUG: ParameterBinding Information: 0 : CALLING BeginProcessing
DEBUG: ParameterBinding Information: 0 : CALLING EndProcessing

跑步

Trace-Command -Name CommandDiscovery {ii .} -PSHost

返回

DEBUG: CommandDiscovery Information: 0 : Looking up command: ii
DEBUG: CommandDiscovery Information: 0 : Alias found: ii  Invoke-Item
DEBUG: CommandDiscovery Information: 0 : Cmdlet found: Invoke-Item  Microsoft.PowerShell.Commands.InvokeItemCommand,
Microsoft.PowerShell.Commands.Management, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35

我想可能是文件关联问题或其他问题。但我无法弄清楚Invoke-Item实际调用的是什么或如何改变它。

我怎样才能让它再次工作?

4

1 回答 1

2

很难弄清楚为什么它可能不再适合你,但为什么不使用在 powershell 和 cmd 中相同的替代方案:

start .

explorer .也可以)

如果ii .很重要,请尝试重新启动 Powershell 控制台和/或计算机。也试着做ii . -whatif看看你是否知道为什么它不再起作用了。

于 2012-04-13T13:06:03.417 回答