Open SDI Origin in New System Checklist

* Addresses issue #60
This commit is contained in:
2Shirt 2019-03-17 21:02:42 -06:00
parent 1fbdb2b5e2
commit f73a1f8191
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C
2 changed files with 7 additions and 0 deletions

View file

@ -287,6 +287,11 @@ def open_device_manager():
popen_program(['mmc', 'devmgmt.msc'])
def open_snappy_driver_origin():
cmd = r'{BinDir}\_Drivers\SDIO\SDIO.exe'.format(**global_vars)
popen_program(cmd)
def open_windows_activation():
popen_program(['slui'])

View file

@ -167,6 +167,8 @@ if __name__ == '__main__':
function=open_device_manager, cs='Started')
try_and_print(message='Opening HWiNFO (Sensors)...',
function=run_hwinfo_sensors, cs='Started', other_results=other_results)
try_and_print(message='Opening SDI Origin...',
function=open_snappy_driver_origin, cs='Started')
try_and_print(message='Opening Windows Updates...',
function=open_windows_updates, cs='Started')
if not windows_is_activated():