I have a requirement to map the drives in Windows using go and found this link to be useful What is the best way to map windows drives using golang?
When I tried to use the code given here, I ran into this error
exec: "net use": executable file not found in %PATH%
I verified that the bin folder of go is in the PATH variable. I also tried by running it like
cmd, err := exec.Command("cmd", "/c", "NET USE", "T:", \\SERVERNAME\C$, "/PERSISTENT").CombinedOutput()
but I get this error:
exit status 1 You used an option with an invalid value.
Any help on what I'm doing wrong here ?