From 54d1e11eeb844e6bbf21ac60dd2862f58ed8674b Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Fri, 15 Nov 2019 16:50:02 -0700 Subject: [PATCH] Open ODD during system setup --- .bin/Scripts/system_setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.bin/Scripts/system_setup.py b/.bin/Scripts/system_setup.py index 9a38ff24..56a24b2a 100644 --- a/.bin/Scripts/system_setup.py +++ b/.bin/Scripts/system_setup.py @@ -389,6 +389,12 @@ def main(): # Ignoring exceptions since we just want to show the popup pass + # Eject ODD + try: + run_nircmd('cdrom', 'open') + except Exception: + pass + # Verf step if ask('Open programs (Activation, Device Manager, etc...)? '): open_all_the_things()