Powershell 7


Basic handling of Powershell

Press F1 after typing a command to get help or type man before the command.

Press F2 to toggle prediction.

Press Tab to move to or list the next suggestion.

Press Shift + Tab to move to the previous suggestion.

Press to accept the suggestion.

Press Ctrl + Space to list autocomplete suggestions.

Find the Powershell profile echo $profile or just $profile

Open the Powershell profile in notepad notepad $profile

Print the current PSReadLine key handlers Get-PSReadLineKeyHandler

or press Ctrl + Alt + ?

VS Code options

code -w - Wait for the files to be closed before returning.

code -n - Force to open a new window.

code . - Opens a new empty window.

code -r - Reuse window. Force to open in an already opened window.

code -a - Add folder(s) to the last active window.

code -g --goto <file:line[:character]> - Open a file at a specific line number.

Get-ChildItem | code - - Opens the output of the command in VS Code.

Misc

Find the file location of the Powershell history file. Edit and remove inaccurate predictions.

Get-PSReadLineOption | select-Object -Property HistorySavePath # or (Get-PSReadLineOption).HistorySavePath

Basic Commands

CommandDescription
pwdPrints the current working directory.
lsLists the contents of the current directory.
cdChanges the current directory.
mdCreates a new directory.
rmRemoves a file or directory.
cpCopies a file or directory.
mvMoves a file or directory.
catDisplays the contents of a file.
treeLists the contents of a directory in a treelike format.
echoPrints text to the console.
readReads input from the user.
clsClears the console.
exitExits the current shell.
helpDisplays information about the builtin commands.
get-helpDisplays information about a specific command.
fileDisplays information about a file.
typeDisplays the contents of a file.