I am running a C# program on one machine that launches programs on that machine and other remote machines. I am using psexec to start up the programs on the other machines. The problem is that those programs on the other machines have to access mapped drives to get infomation on how they work. I am using the following format
psexec -u username -p password -i 0 -d \\remote computer - w "working directory" cmd "program name"
when I use
psexec -u username -p password -i 0 -d \\remote computer net use
all the remote drives are unavailable.
I am using the same user name and password with psexec that the drives were created under.
Any suggestions?