Hi, All
Console window in Win10 allows to run command to open the system setting dialog:
But Shell requires the full path to the executable file, that is unknown here.
...gives:
How to run it ?
Console window in Win10 allows to run command to open the system setting dialog:
start ms-settings:network-wifi
But Shell requires the full path to the executable file, that is unknown here.
B4X:
Dim sh As Shell
sh.Initialize("", "start", Array As String("ms-settings:network-wifi"))
sh.WorkingDirectory = File.DirTemp
sh.RunSynchronous(1000)
java.io.IOException: Cannot run program "start" (in directory "C:\Users\VLAD-HP\AppData\Local\Temp"): CreateProcess error=2, The system cannot find the file specified.
How to run it ?