parent
1fbdb2b5e2
commit
f73a1f8191
2 changed files with 7 additions and 0 deletions
|
|
@ -287,6 +287,11 @@ def open_device_manager():
|
||||||
popen_program(['mmc', 'devmgmt.msc'])
|
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():
|
def open_windows_activation():
|
||||||
popen_program(['slui'])
|
popen_program(['slui'])
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -167,6 +167,8 @@ if __name__ == '__main__':
|
||||||
function=open_device_manager, cs='Started')
|
function=open_device_manager, cs='Started')
|
||||||
try_and_print(message='Opening HWiNFO (Sensors)...',
|
try_and_print(message='Opening HWiNFO (Sensors)...',
|
||||||
function=run_hwinfo_sensors, cs='Started', other_results=other_results)
|
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...',
|
try_and_print(message='Opening Windows Updates...',
|
||||||
function=open_windows_updates, cs='Started')
|
function=open_windows_updates, cs='Started')
|
||||||
if not windows_is_activated():
|
if not windows_is_activated():
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue