SyntaxFix
Write A Post
Hire A Developer
Questions
In PowerShell pwd is an alias to Get-Location so you can simply run pwd in it like in bash
pwd
Get-Location
It can also be called from cmd like this powershell -Command pwd although cd or echo %cd% in cmd would work just fine
powershell -Command pwd
cd
echo %cd%