在Windows PowerShell中更改初始目录

时间:2014-12-30 14:32:27

标签: powershell

我使用windows powershell来应用我的项目。我想更改我打开程序时找到的初始目录。

我想拥有我的项目目录。

这可能吗?

2 个答案:

答案 0 :(得分:2)

如果我正确理解了您的问题,您希望powershell默认启动项目的工作目录。您需要做的是创建一个配置文件并进行设置。

你可以通过简单地做某种

来做到这一点
New-item –type file –force $Profile
notepad.exe $Profile

这将打开配置文件配置文件。在该文件中,您可以编写类似

的内容
Set-Location C:\Path\To\Project
Clear-Host

保存并关闭文件,然后执行

. $Profile

答案 1 :(得分:1)

在powershell中创建个人资料。您可以找到分步说明here

基本上New-item –type file –force $profile

使用Set-Location后,您可以指定Set-Location C:\blah...\...\之后的目录。现在,每次打开PowerShell时,都会在此位置打开。