我在用着:
VBoxManage guestcontrol "Windows 10" --username "john" run "Z:\\path\\to\\bin.exe"
该命令被执行,但我需要在指定目录中运行它。
有没有办法设置工作目录VBoxManage guestcontrol run
?
我在用着:
VBoxManage guestcontrol "Windows 10" --username "john" run "Z:\\path\\to\\bin.exe"
该命令被执行,但我需要在指定目录中运行它。
有没有办法设置工作目录VBoxManage guestcontrol run
?
如果您的客人是 Windows,请尝试使用
CMD.EXE
andSTART
,例如应该足够了。您可能需要对其进行修改以满足您的需要。
CMD.EXE
支持/C
运行给定的命令并终止,我们在其中运行START
.START
支持/D
在指定目录下运行命令,本例中我们使用Z:\path\to
.