powershell 怎么回到命令开始的地方2017年5月10日 在 Powershell基础 来自 PowerShell交流中心 › 分类: Powershell基础 › powershell 怎么回到命令开始的地方 1 赞 踩 痛苦中... asked 8 年 ago 有的执行了一个命令,然后就输出了一大段的结果,所以问问有没有什么办法不用上移就可以直接回到命令开始的地方 1 Answers 0 赞 踩 Best Answer Mooser Lee 管理员 answered 8 年 ago #保存旧的光标位置 $oldCursorPosition = $host.UI.RawUI.CursorPosition #执行自己的命令 ls $env:windir #重置光标位置 [console]::SetCursorPosition($oldCursorPosition.X,$oldCursorPosition.Y) 痛苦中... replied 8 年 ago 厉害了 我的哥 我回去试试