Startup Aplication

  • Thread starter Thread starter Jason
  • Start date Start date
J

Jason

Hi everyone,

I need some info.On windows XP i need to have only one application
running.When Windows starts i will setup aoutomatic administrator
login,application will start and after close application i need to get
windows to go to shutdown.How to do this?

Thanks in advance
 
Jason said:
Hi everyone,

I need some info.On windows XP i need to have only one application
running.When Windows starts i will setup aoutomatic administrator
login,application will start and after close application i need to get
windows to go to shutdown.How to do this?

Thanks in advance

Put the following lines into the file
"c:\documents and settings\all users\start
menu\programs\startup\netlogon.bat":

@echo off
"c:\Program Files\Some Folder\Name of your App.exe"
shutdown -s
 
Back
Top