0
My setup is Linux Mint as host OS, which logs in to a Windows 7 machine using through Citrix. My local (linux) home directory is visible on the Windows system as
\\Client\S$
What I want to do is make a (robo)copy of this folder to another Windows folder. My copy .bat script works when run by hand, but when run as a scheduled task I get (added a dir
command for debugging)
dir \\Client\S$
The network path was not found.
Tried executing as myself as well as using SYSTEM
. When I execute net use
by hand I see:
\\Client\S$ PICAClientNetwork
net use
from the bat script lists nothing. So my question is: how do I access this drive from my script?
Thanks for the answer. The user is set correctly but I have not tried
Run only when user is logged on
and it sounds like that might be it. I'll try that (next week) and mark as answered if that was it. Was already planning to write something to trigger my .bat myself but I'd prefer not to go that route. – Adversus – 2015-12-11T09:50:46.5101Checking
Run only when user is logged on
solved it, super! – Adversus – 2015-12-14T09:02:47.967