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?
Asked
Active
Viewed 3,200 times
1 Answers
5
You can turn the intellisense feature off.
.
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.]