Is there some kind of trick to restarting NVDA programmatically? If I try to just task schedule or python subprocess c:\program files (x86)\nvda\nvda.exe I get "Requires elevation" errors even when running as privileged user. How does this work?
@NVAccess #
nvda
Jamie Teh
in reply to Florian • • •Jamie Teh
in reply to Jamie Teh • • •import ctypes; ctypes.windll.shell32.ShellExecuteW(None, None, r"c:\Program Files (x86)\nvda\nvda.exe", "", None, 1)
NV Access
in reply to Jamie Teh • • •Florian
in reply to Jamie Teh • • •