Index: /trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp	(revision 48338)
+++ /trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp	(revision 48339)
@@ -477,10 +477,18 @@
 
                 case DeviceType_DVD:
-                    pNewDesc->addEntry(VirtualSystemDescriptionType_CDROM,
-                                       strTargetVmdkName,   // disk ID
-                                       strTargetVmdkName,   // OVF value
-                                       strLocation, // vbox value
-                                       (uint32_t)(llSize / _1M),// ulSize
-                                       strExtra);
+                {
+                    /* get info about whether medium is a real drive/device or not */
+                    BOOL fHostDrive = false;
+                    rc = pMedium->COMGETTER(HostDrive)(&fHostDrive);
+
+                    /* Only virtual CD-ROM is exported, the real device/drive isn't exported */
+                    if(!fHostDrive)
+                        pNewDesc->addEntry(VirtualSystemDescriptionType_CDROM,
+                                           strTargetVmdkName,   // disk ID
+                                           strTargetVmdkName,   // OVF value
+                                           strLocation, // vbox value
+                                           (uint32_t)(llSize / _1M),// ulSize
+                                           strExtra);
+                }
                 break;
 
