You will need to map drives for use by the "LocalSystem" account (where WinCron runs.) The built-in "LocalSystem" account doesn't see the drives you have mapped in your USER account.
# run once script to map drives into the "LocalSystem" account # Other WinCron scripts will then be able to access these drives
{
-start
-stop
-action -print ** Map some drives into the "LocalSystem" account
-command -detach net use P: \\BUGS\p MyPassword /USER:MyDomain\MyUserid /PERSISTENT:YES
-command -detach net use W: \\Fox1\Data MyPassword /USER:MyDomain\MyUserid /PERSISTENT:YES
-command -detach net use Q: \\Fox1\Data2 MyPassword /USER:MyDomain\MyUserid /PERSISTENT:YES
-command -detach net use R: \\Fox2\Data2 MyPassword /USER:MyDomain\MyUserid /PERSISTENT:YES
-command -detach net use S: \\Fox3\Data3 MyPassword /USER:MyDomain\MyUserid /PERSISTENT:YES
-command -detach net use T: \\Fox4\Data4 MyPassword /USER:MyDomain\MyUserid /PERSISTENT:YES
-command -detach net use U: \\Fox5\Data5 MyPassword /USER:MyDomain\MyUserid /PERSISTENT:YES
-command -detach net use Y: \\Fox6\Data6 MyPassword /USER:MyDomain\MyUserid /PERSISTENT:YES
-command -detach net use O: \\Fox7\Data7 MyPassword /USER:MyDomain\MyUserid /PERSISTENT:YES
-action -print ** Okay, drives are now available!
}
Luke Tomasello
_________________________
Regards,
Luke Tomasello