﻿id	summary	reporter	owner	description	type	status	component	version	resolution	keywords	cc	guest	host
13157	Double quotes in guestprocess arguments are removed or replaced with a backslash	hakito		"When executing a command on the guest via ''vboxmanage guestcontrol exec'' or the virtualbox api using double quotes within an argument, it get's replaced with a single backslash character in the guest command line.

For example:


{{{
vboxmanage guestcontrol Windows7 exec --username user --password pass --image c:\test.bat -- my""""quote
vboxmanage guestcontrol Windows7 exec --username user --password pass --image c:\test.bat -- ""my""""quote""
}}}

Expected command lines:


{{{
cmd.exe /c c:\test.bat my""""quote
cmd.exe /c c:\test.bat ""my""""quote""
}}}


Actual command lines:


{{{
cmd.exe /c c:\test.bat myquote
cmd.exe /c c:\test.bat my\quote
}}}

"	defect	closed	guest control	VirtualBox 4.3.12	fixed			all	Windows
