如何将PowerShell设置为我的SmartGit“Open Git-Shell”命令?

时间:2014-09-30 04:45:40

标签: powershell smartgit

我尝试将PowerShell设置为我的" Open Git-Shell"选项没有成功。在命令字段中,我设置了以下选项:

命令:

powershell.exe

参数:

-noexit -executionpolicy Unrestricted -command "cd '${filePath}'"

这将以非交互模式启动PowerShell(即:该过程在任务管理器中运行,但UI不可见)。我做错了什么?

1 个答案:

答案 0 :(得分:2)

我使用cmd.exePowerShell中为“Open Git-Shell”调用SmartGit。我能够通过以下方式获得所需的结果:

<强>命令:

cmd.exe

<强>参数:

/c start powershell.exe -noexit -executionpolicy Unrestricted -command "cd '${filePath}'"