Mike Malter
Mike Malter

Reputation: 1038

How to show cursor in Powershell

I'm new to Powershell and have to use it now that I am doing a lot in Azure.

When I open the Azure Powershell window, the blinking cursor is not there and it's hard for me to tell where edit. How do I turn on the cursor? I have done a lot of searching but have not found the answer anywhere.

Upvotes: 19

Views: 10079

Answers (1)

S1r-Lanzelot
S1r-Lanzelot

Reputation: 2266

It is a powershell issue which defaults size of the cursor to 0 thus making it invisible. The fix is type the following command in the powershell window

[Console]::CursorSize = 25

Upvotes: 38

Related Questions