Agent run on schedule vs on event issue/difference

I have an agent written in LotusScript which imports data from a .txt file (which is in the local disc (c:)) to a db. The agent should run on schedule every 5 min, all day, on a specific server. However, it does not. The strange thing though is that when the agent is run on event it works fine (I have also debugged it and have agent logging as well).

I would appreciate any help/contribution in solving this issue as it quite urgent! Are the properties of the agent wrong? Currently:

Basics - Target: None, Options: Shared

Security - Runtime Security Level: Do not allow restricted operations, Default access for viewing and running this agent: All readers and above.

Thanks in advance

Subject: Agent run on schedule vs on event issue/difference

If you’re accessing a disk on a server, and you have this security setting set:Security - Runtime Security Level: Do not allow restricted operations, Default access for viewing and running this agent:

It won’t work. You need to allow restricted operations.

Subject: RE: Agent run on schedule vs on event issue/difference

Thank you for your reply.