這裡如何正確使用啟動指令呢?

這裡如何正確使用啟動指令呢?
C:\>start iexplorer.exe /low
The system cannot find the file iexplorer.exe.

我將如何正確鍵入此內容,以便在使用 iexplorer 啟動時將標題設置為“MyBrowser”並將其設置為低優先級,我將使用 /low 並最小化以及 /min 對嗎?

答案1

您收到該錯誤的原因是因為 Internet Explorer .exe 實際上名為iexplore.exe,而不是iexplorer.exe。這只是r您輸入的名稱中不應該出現的額外內容。

您想要執行的完整命令應該是:

C:\>start "MyBrowser" /low /min iexplore.exe

相關內容