system_exec
- Posted by buzzo Dec 24, 2013
- 1791 views
Having a problem mapping shares in Win 7.. using Euphoria v4.0
Using
system_exec("net use z: \"\\\\Share\\My File\"",2)
will not map the share.. produces a system error.
However
system_exec("net use z: \\\\Share\\File",2)
will map the share..
Both shares can be mapped from the command line:
net use z:
Share\File
net use x: "
Share\My File"
(something seems to produce newlines in the above text.. ??)
Is there a solution?