当我在powershell中输入man robocopy
时,它会显示:
Get-Help:Get-Help在此会话的帮助文件中找不到robocopy。 要下载更新的帮助主题,请键入:"更新 - 帮助"。
我在powershell中以管理员身份运行Update-Help
,它下载了不同模块的帮助。但它仍然显示man robocopy
的相同错误。
适用于man dir
答案 0 :(得分:5)
在PowerShell中man
是Get-Help
的别名。 dir
是Get-ChildItem
的别名。所以man dir
有效,因为它只是在做Get-Help Get-ChildItem
。
您无法执行man Robocopy
,因为Robocopy是外部可执行文件而不是PowerShell命令,因此没有PowerShell帮助内容。
您需要Robocopy /?
。