From 40a7f635241f69da0b9cfa4a3e01aff26906e5b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damian=20B=C3=BCchel?= Date: Tue, 30 May 2023 15:28:21 +0200 Subject: [PATCH] SEBWIN-703: Added MSFT Virtual DVD device to whitelist. --- SafeExamBrowser.SystemComponents/VirtualMachineDetector.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SafeExamBrowser.SystemComponents/VirtualMachineDetector.cs b/SafeExamBrowser.SystemComponents/VirtualMachineDetector.cs index c2506ab9..51d628d6 100644 --- a/SafeExamBrowser.SystemComponents/VirtualMachineDetector.cs +++ b/SafeExamBrowser.SystemComponents/VirtualMachineDetector.cs @@ -31,8 +31,10 @@ namespace SafeExamBrowser.SystemComponents private static readonly string[] DeviceWhitelist = { - // Microsoft Virtual Disk - "PROD_VIRTUAL_DISK" + // Microsoft Virtual Disk Device + "PROD_VIRTUAL_DISK", + // Microsoft Virtual DVD Device + "PROD_VIRTUAL_DVD" }; private readonly ILogger logger;