Index: /trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDropTarget.cpp
===================================================================
--- /trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDropTarget.cpp	(revision 50729)
+++ /trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDropTarget.cpp	(revision 50730)
@@ -23,4 +23,5 @@
 #include "VBoxDnD.h"
 
+#include "VBox/GuestHost/DragAndDrop.h"
 #include "VBox/HostServices/DragAndDropSvc.h"
 
@@ -452,14 +453,25 @@
                         if (RT_SUCCESS(rc))
                         {
-                            uint32_t cbSize = cchFiles * sizeof(char);
-                            Assert(cbSize);
-
-                            mpvData = RTMemDup(pszFiles, cbSize);
-                            if (mpvData)
+                            uint32_t cbFiles = cchFiles * sizeof(char);
+                            Assert(cbFiles);
+
+                            /* Translate the list into URI elements. */
+                            DnDURIList lstURI;
+                            rc = lstURI.AppendNativePathsFromList(pszFiles, cbFiles, 
+                                                                  0 /* Flags */);
+                            if (RT_SUCCESS(rc))
                             {
-                                mcbData = cbSize;
+                                RTCString strRoot = lstURI.RootToString();
+                                size_t cbRoot = strRoot.length();
+
+                                mpvData = RTMemAllocZ(cbRoot + 1 /* Include termination */);
+                                if (mpvData)
+                                {
+                                    memcpy(mpvData, strRoot.raw(), cbRoot);
+                                    mcbData = cbRoot + 1;
+                                }
+                                else
+                                    rc = VERR_NO_MEMORY;
                             }
-                            else
-                                rc = VERR_NO_MEMORY;
                         }
 
