如何使命令提示符快捷方式在启动时运行脚本?

时间:2013-01-23 16:18:52

标签: windows powershell powershell-v2.0 cmd

我可以在桌面上创建一个自定义的命令提示符快捷方式,以便在特定目录中启动并具有一些指定的维度等。

现在我有一个脚本为提示设置一些环境变量,并希望在单击此快捷方式后立即运行它。

如何告诉cmd或powershell在当前shell窗口中运行此脚本然后显示shell?

1 个答案:

答案 0 :(得分:1)

更改快捷方式的属性以在目标路径中包含file(scriptpath)和noexit(在完成时不关闭)参数。目标路径示例:

%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe -noexit -file "c:\users\graimer\desktop\testscript.ps1"