A Windows limitation is that logical network drives are not shared across users. VisualCron is running as the SYSTEM account. Even though you use a Credential there is no API that tells us what network drives where mapped or not and impersonating a user with a Credential does not automatically load any network drives.
Generally, network drives should be avoided as network drives can changed, deleted etc. Instead you should use UNC paths. A UNC path looks like this \\server\path\file. Even though a logical drive is removed this will always work. And the good news is also that once you use a Credential, you have access to UNC paths.
There are 3 options for you:
1. Change to UNC paths and keep Credential - recommended
2. Map the drives in the VisualCron drive mapping tool and remove the Credential after that as you don't need it then - not as stable as 1. as you are still dependant on network drives
3. Change the username of the VisualCron 4 service and remove Credential - not recommended as you may give the Service more access than you want + in the end you don't know who your tasks are
really running as
Edited by user
2008-02-28T20:17:17Z
|
Reason: Not specified