如何在 PowerShell 上启用 cmdlet 参数自动完成弹出窗口?

mts*_*396 0 powershell windows-10 powershell-5.0 powershell-v5.1

So I'm following this beginner PowerShell tutorial here and am following the bit that shows how to enable the auto-suggestion popup that comes up when trying to see all possible parameters for a particular cmdlet. So when I try to replicate it by typing '-' after a cmdlet, according to the article, a popup should come up showing all possible parameters for the cmdlet. But for me this doesn't seem to work- although it does appear in a particular format, but only after I type ctrl+space.

Is there a way to have the parameters come up automatically and in a popup format?

So here is how the article shows auto suggestions popup:

在此处输入图片说明

And here is my PowerShell where I have to enter ctrl+space but the parameters appear in different format:

在此处输入图片说明

N.B. I am using PowerShell 5.1.

Mat*_*sen 6

从您链接的文章中:

每个 cmdlet 都有几个参数来自定义它的功能。键入 cmdlet 和连字符 (-) 后,PowerShell ISE将自动建议所有有效参数及其类型

PowerShell ISE 是 Windows 附带的 powershell 的“集成脚本环境”开发工具。

powershell.exe不是PowerShell的ISE。

要启动 ISE,请ise在 powershell 提示符下键入并按 Enter,或打开“运行”菜单,然后启动powershell_ise.exe