Index: /trunk/include/iprt/err.h
===================================================================
--- /trunk/include/iprt/err.h	(revision 75950)
+++ /trunk/include/iprt/err.h	(revision 75951)
@@ -1233,4 +1233,6 @@
 /** Is a character device. */
 #define VERR_IS_A_CHAR_DEVICE               (-164)
+/** No media in drive. */
+#define VERR_DRIVE_IS_EMPTY                 (-165)
 /** @} */
 
Index: /trunk/src/VBox/Runtime/nt/RTErrConvertFromNtStatus.cpp
===================================================================
--- /trunk/src/VBox/Runtime/nt/RTErrConvertFromNtStatus.cpp	(revision 75950)
+++ /trunk/src/VBox/Runtime/nt/RTErrConvertFromNtStatus.cpp	(revision 75951)
@@ -84,4 +84,5 @@
         case STATUS_DIRECTORY_NOT_EMPTY:    return VERR_DIR_NOT_EMPTY;
         case STATUS_SHARING_VIOLATION:      return VERR_SHARING_VIOLATION;
+        case STATUS_NO_MEDIA_IN_DEVICE:     return VERR_DRIVE_IS_EMPTY;
 
         case STATUS_UNEXPECTED_NETWORK_ERROR:
