scheduled task question

  • Thread starter Thread starter jaime
  • Start date Start date
J

jaime

Can anyone help me with this?

I'd like to automatically schedule an Access macro to run.
I have most of it figured out...I can get the macro to run
but only after I sign into Access. Is there any way to
program my Access username and password into the bat file
so that this job can run without any intervention from me?

Thanks!
 
Can anyone help me with this?

I'd like to automatically schedule an Access macro to run.
I have most of it figured out...I can get the macro to run
but only after I sign into Access. Is there any way to
program my Access username and password into the bat file
so that this job can run without any intervention from me?

Thanks!

SET USERNAME=foo
SET PASSWORD=bar
msaccess /user %USER%NAME% /pwd %PASSWORD%
 
Back
Top