Powershell 调用cmd 运行exe、bat、jar文件

1. 配置路径

$nginxPath = "C:\path\to\nginx"
$redisPath = "C:\path\to\redis"
$ruoyiAdminJarPath = "C:\path\to\ruoyi-admin"

2. exe文件,cd到exe所在文件夹,然后执行

Write-Output "启动 Nginx..."
Start-Process -FilePath "cmd.exe" -ArgumentList "/c cd /d `"$nginxPath`" && start nginx.exe"
Write-Output "Nginx 已启动"

3. bat文件,cd到bat文件所在文件夹,然后执行

Write-Output "启动 Redis..."
Start-Process -FilePath "cmd.exe" -ArgumentList "/c cd /d `"$redisPath`" && start start.bat"
Write-Output "Redis 已启动"

4. jar包,cd到jar包所在文件夹,然后执行

Write-Output "启动 Ruoyi..."
Start-Process -FilePath "cmd.exe" -ArgumentList "/c cd /d `"$ruoyiAdminJarPath`" && start java -jar ruoyi-admin.jar"
Write-Output "Ruoyi 已启动"

5. 注意

  • 先cd到对应文件所在文件夹,可以使生成的日志保存在对应的文件夹,可以使程序获取对应文件夹下的配置文件,这样就不会在cmd文件所在的路径生成日志或者寻找配置文件
  • 如果不需要在新窗口打开,则在 Start-Process 的最后添加 -NoNewWindow
posted @ 2024-08-20 16:42  echo_lovely  阅读(274)  评论(0编辑  收藏  举报