Command shell
A command shell: it reads typed instructions and starts programs or works with files.
Use it for .NET and Git commands in our Windows examples. It can run inside Windows Terminal or VS Code; the surrounding window is not the shell.
Official setup instructions ↗
At the PowerShell prompt. Type the command, then press Enter. PSTool guide↗
Type this at the PowerShell prompt and press Enter. Do not paste the prompt itself.
$PSVersionTable.PSVersion
What you should see: A version table appears. Windows PowerShell commonly shows 5.1; PowerShell 7 shows 7.x.
Find out which folder this tab is working in.
Get-Location
What you should see: The current folder path appears. Change folder before running a project-specific command.
Both read commands, but their languages differ. Match the shell named above the example. A command that works in one is not automatically valid in the other.
Terminal is the window and tabs. PowerShell is one shell running inside a tab. Check the tab’s profile before entering commands.
Some use it only for optional local practice. Each lesson explains what you actually need.
Guide reviewed 2026-09-09. Menu labels can differ between versions.