Desde os tempos antigos do MS-DOS veio o CD: Change Directory, agora no PowerShell chamado Set-Location, sendo um dos aliases do CD, esse comando ajudará você a mudar diretamente para o diretório (ou pasta) que você deseja .
A ajuda do Set-Location nos informa que:
NAME
Set-Location
SYNTAX
Set-Location [[-Path] <string>] [-PassThru] [-UseTransaction] [<CommonParameters>]
Set-Location -LiteralPath <string> [-PassThru] [-UseTransaction] [<CommonParameters>]
Set-Location [-PassThru] [-StackName <string>] [-UseTransaction] [<CommonParameters>]
ALIASES
sl
cd
chdir
REMARKS
Get-Help cannot find the Help files for this cmdlet on this computer. It is displaying only partial help.
-- To download and install Help files for the module that includes this cmdlet, use Update-Help.
-- To view the Help topic for this cmdlet online, type: "Get-Help Set-Location -Online" or
go to http://go.microsoft.com/fwlink/?LinkID=113397.
Então, ao usar o Set-Location, você pode especificar o novo caminho como:
Set-Location C:\Windows
e a mágica acontece.