-
-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
invalidThis doesn't seem rightThis doesn't seem rightquestionFurther information is requestedFurther information is requested
Description
Change the restart logic. Replace each instance of subprocess.Popen('explorer.exe') with a start call through cmd.exe. For example:
Kill existing explorer
subprocess.run(['taskkill', '/F', '/IM', 'explorer.exe'], check=True)
Use cmd’s ‘start’ to relaunch the Explorer shell
subprocess.run(['cmd', '/c', 'start', '', 'explorer.exe'], check=True)
Metadata
Metadata
Assignees
Labels
invalidThis doesn't seem rightThis doesn't seem rightquestionFurther information is requestedFurther information is requested