PSReadLine Installation

Package: PSReadLine

Version: 2.3.7

Description: Adds enhanced command-line editing capabilities to PowerShell.

Author: Microsoft

How to Install

To install the PSReadLine module, open your PowerShell console and run the following command:

Install-Module -Name PSReadLine -Scope CurrentUser -Force

Explanation:

If you are prompted to install a NuGet provider, type Y and press Enter.

Verifying Installation

After the installation completes, you can verify it by running:

Get-Module -Name PSReadLine -ListAvailable

You should see PSReadLine listed with its version. To start using its features, you might need to restart your PowerShell session or run:

Import-Module PSReadLine