﻿id	summary	reporter	owner	description	type	status	component	version	resolution	keywords	cc	guest	host
10465	vbox can't automount transient shared folders after logining in guest os	jinsheng		"According sdk document, I can creates transient new shared folders by IConsole::createSharedFolder([in]wstring name,[in] wstring hostPath,[in] boolean writable,[in] boolean automount). And I set the automount ture.
I wrote some code like below:[[BR]]

{{{
IMachine machine = vbox.findMachine(""windowsxp"");
IProcess process = machine.launchVMProcess(session, ""gui"", null);
progress.waitForCompletion(10000);
IConsole console = session.getConsole();
sharename = ""shared"" + String.valueOf(new Random().nextInt());
console.createSharedFolder(sharename, ""d:\\uml"", false, true);
}}}

And the code work well. The shared folder was automounted, and i see a new driver with a driver letter in windows explorer. But after i logined in my guest xp, i wanted to add a new transient shared folder(like d:\\nst) and i used some code like upside. Then i can't see a new driver representing the new shared folder. And I must mount the folder manually in order to use the folder.

Is this a bug in guest additions?Thank you."	defect	closed	shared folders	VirtualBox 4.1.8	invalid	automount shared folder		Windows	Windows
