С давних времен MS-DOS появился CD: Изменить каталог, теперь в PowerShell с именем Set-Location, являясь одним из псевдонимов CD, эта команда поможет вам перейти непосредственно к нужному каталогу (или папке).
Помощь от Set-Location говорит нам, что:
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.
Таким образом, при использовании Set-Location вы можете указать новый путь, например:
Set-Location C:\Windows
и магия случается.