Opened 18 years ago
Closed 18 years ago
#342 closed enhancement (fixed)
-nologo switch for VBoxManage
Reported by: | Christian d'Heureuse | Owned by: | |
---|---|---|---|
Component: | other | Version: | |
Keywords: | VBoxManage command line logo | Cc: | |
Guest type: | other | Host type: | other |
Description
Please provide a "-nologo" switch for the VBoxManage command line tool, to reduce the output on the command line (suppress the first 3 output lines) when the tool is used within a script (e.g. in a Windows Batch file).
Change History (5)
comment:1 by , 18 years ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
comment:2 by , 18 years ago
Resolution: | wontfix |
---|---|
Status: | closed → reopened |
But when I redirect the output to nul, I don't get any output at all. Even error messages are not displayed (in Windows).
e.g. the commands:
VBoxManage xyz >nul VBoxManage modifyvm x -ostype x >nul
do not produce any output. This is not acceptable.
comment:3 by , 18 years ago
Sorry, the forum software made one line out of two lines. Correct lines:
VBoxManage xyz >nul
VBoxManage modifyvm x -ostype x >nul
comment:4 by , 18 years ago
Yes, I agree that there should be a -nologo switch. Not sure when we will get around implementing this so a patch would be very welcome.
You can achieve this now by diverting the output from VBoxManage to /dev/null (Linux) or to nul (Windows).