start /b "" "c:\Program Files\Oracle\VirtualBox\VBoxHeadless.exe" -startvm "debian604 64"
다음을 사용하여 매개 변수 목록을 읽는 경우 start /?
:
START ["title"] [/D path] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED]
[/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL]
[/NODE <NUMA node>] [/AFFINITY <hex affinity mask>] [/WAIT] [/B]
[command/program] [parameters]
"title" Title to display in window title bar.
command/program
If it is an internal cmd command or a batch file then
the command processor is run with the /K switch to cmd.exe.
This means that the window will remain after the command
has been run.
If it is not an internal cmd command or batch file then
it is a program and will run as either a windowed application
or a console application.
parameters These are the parameters passed to the command/program.
그것은이 기대한다 title
따옴표로 묶여 ( "
). 프로그램 경로에 따옴표가 포함되어 있으므로 제목으로 해석됩니다. 명시 적 제목 (이 경우에는 empty ""
)을 추가하면 작동합니다.
다른 방법은 /d
스위치를 사용하여 경로를 지정하는 것입니다. 구체적으로 :
start /b /d "c:\Program Files\Oracle\VirtualBox\" VBoxHeadless.exe -startvm "debian604 64"
/d
인용 된 경우에도 스위치 다음의 첫 번째 인수를 경로로 사용하고 다음 인수가 인용되지 않은 경우 작동합니다. 명령 / 프로그램으로 인식 된 이후의 모든 항목은 해당 명령 / 프로그램에 매개 변수로 전달됩니다. 명령 / 프로그램에 이름에 공백 VBox Headless.exe
이 있으면 따옴표가 필요하고 제목으로 인식되므로이 기능 은 작동하지 않습니다 .
전반적으로 첫 번째 (명백한 제목) 방법이 더 좋습니다. 마이크로 소프트 측에서는 잘못된 디자인을 선택했다. "따옴표로 묶은 첫 번째 인수가 아닌"제목 대신 스위치를 추가해야했다.
start /b
가상 머신을 백그라운드에 두지 마십시오. 그때 다른 것을 생각해 내야합니다.