Home > Blockchain >  How to get the list of commands entered in powershell?
How to get the list of commands entered in powershell?

Time:11-24

I am fairly new to Powershell and I am practising using different commands.I haven't remembered all the commands.
Is there any way to get the list of all the commands that has entered?

Any help is appreciated.Thanks.

CodePudding user response:

Yes there is a command that gives you the list of commands entered during the current session.

Use below command :

Get-History

  • Related