hguser
hguser

Reputation: 36020

how to make a bat file autostart in win system

I have a bat file (in fact it is a tomcat startup bat), this is the very simple content:

c:/tomcat/catalina.bat run

Now I want it to autostart at system startup, any ideas?

Upvotes: 0

Views: 4015

Answers (2)

Senad Meškin
Senad Meškin

Reputation: 13756

if you want to start it when you are logged in then put it in start list, just create shortcut to bat file in startup folder start->programs->startup

Upvotes: 0

Steven Ryssaert
Steven Ryssaert

Reputation: 1967

To clarify more what @Oskar said. The autostart is the startup folder in your Program Files folder. Any executable files placed in that folder are launched on windows startup.

Upvotes: 1

Related Questions