2

I'm using Powershell 7.3.3 in Windows 11 and the Predictive Intellisense feature is on by default unless I turn it off manually each time I use it. Is there any way to turn it off (or back on) permanently without setting it each time?

Rich
  • 445

1 Answers1

5

You can turn the intellisense feature off.

Intellisense

.

Enable Predictive IntelliSense:

You can enable the predictive IntelliSense feature with the option cmdlet for PSReadline.

Set-PSReadlineOption -PredictionSource History

To disable the feature, set the source back to none.

Set-PSReadlineOption -PredictionSource None

[Start Powershell as Admin before setting. The above is for Powershell 7. Powershell 6 appears to be quite different in settings.]