PowerShell > Get-ChildItem > MissingArgument |总菜鸟
Posted
技术标签:
【中文标题】PowerShell > Get-ChildItem > MissingArgument |总菜鸟【英文标题】:PowerShell > Get-ChildItem > MissingArgument | Total noob 【发布时间】:2022-01-23 11:25:21 【问题描述】:根据我即将开始的远程训练营的前期工作,我正在使用 PowerShell。
运行 ls -l 命令时,我收到一条错误消息(如下)。支持人员似乎不知道是什么原因造成的。我试过谷歌搜索,但我是个菜鸟,找不到明确的答案。有人可以帮助一个人吗?如果可能的话,请用简单的英语XD。
ls -l ~~ + CategoryInfo : InvalidArgument: (:) [Get-ChildItem], ParameterBindingException + FullyQualifiedErrorId : MissingArgument,Microsoft.PowerShell.Commands.GetChildItemCommandls -l Get-ChildItem:缺少参数“LiteralPath”的参数。指定“System.String[]”类型的参数并尝试 再次。 在 line:1 char:4
【问题讨论】:
【参考方案1】:使用:alias ls
找出ls
是Get-ChildItem
的别名。
而help Get-ChildItem
并没有表明选项-l
有效。
错误Missing an argument for parameter 'LiteralPath'
是因为Powershell 使用了-LiteralPath
,因为该选项与-l
匹配,但它需要一个参数。
【讨论】:
以上是关于PowerShell > Get-ChildItem > MissingArgument |总菜鸟的主要内容,如果未能解决你的问题,请参考以下文章