Windows 7,依序運行 3 個應用程序,啟動延遲

Windows 7,依序運行 3 個應用程序,啟動延遲

啟動時,我需要按順序執行以下 3 個進程,並可選擇定義每個進程之間的延遲

1- 啟動 Node js 伺服器
2- 啟動瀏覽器(捷徑)

3-啟動應用程式

在 Windows 7 中,實現此目的的最佳方法是什麼?

答案1

在記事本中建立一個名為startup.vbs的檔案並將此程式碼貼到其中。在啟動時運行該檔案(在啟動資料夾中放​​置捷徑)。

我自己無法正確測試 Node.js 伺服器線路。讓我知道事情的後續。

Dim objWshShell, ls, lc, la
set objWshShell = WScript.CreateObject("WScript.Shell")

ls = objWshShell.Run("cmd /k cd C:\the\path\to\your\server && node myServer.js", 0, false)
WScript.Sleep 1000 'Time in milliseconds

lc = objWshShell.Run("chrome localhost:8080", 1, false)
WScript.Sleep 1000 'Time in milliseconds

la = objWshShell.Run("""C:\Program Files (x86)\Notepad++\notepad++.exe""")
set objWshShell = nothing

將應用程式和延遲更改為您需要的應用程式和延遲

相關內容