PowerShell如何将脚本输出分屏显示2016年9月19日 在 Powershell基础 标签 分屏 来自 PowerShell交流中心 › 分类: Powershell基础 › PowerShell如何将脚本输出分屏显示 0 赞 踩 psman asked 8 年 ago 在CMD中,如果使用 dir /p ,则显示的内容可以按任意键分屏显示,请问在PowerShell中如何达到这个效果 Get-ChildItem没有类似的参数,不仅是这个命令,其他的命令输出结果太长时也希望有这个效果,请问如何做到。 2 Answers 0 赞 踩 Best Answer Mooser Lee 管理员 answered 8 年 ago Get-ChildItem $env:windir | moreGet-ChildItem $env:windir | Out-Host -Paging 0 赞 踩 psman answered 8 年 ago 谢谢。