| View previous topic :: View next topic |
| Author |
Message |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Fri Aug 02, 2002 10:07 pm Post subject: Windows startup registry key... |
|
|
What is the registry key to launch an application at startup? I'm pretty sure that you would use the following VDS code to write/delete a startup registry key:
| Code: |
rem write
registry write,local,SOFTWARE\Microsoft\Windows\CurrentVersion\Run,<<yourprogramname>>,%0
rem delete
registry delete,local,SOFTWARE\Microsoft\Windows\CurrentVersion\Run,,<<yourprogramname>>
|
Is this it?
Thanks...  _________________ FreezingFire
VDSWORLD.com
Site Admin Team
Last edited by FreezingFire on Fri Aug 02, 2002 10:31 pm; edited 1 time in total |
|
| Back to top |
|
 |
Tommy Admin Team
Joined: 16 Nov 2002 Posts: 746 Location: The Netherlands
|
Posted: Fri Aug 02, 2002 10:13 pm Post subject: |
|
|
Yes, that's what I did for my forum check-up program. If using this with the "local"
rootkey as you did this will apply for all users, if you want it only to apply to the
current user you should use "curuser".
Tommy |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Fri Aug 02, 2002 10:19 pm Post subject: |
|
|
Thanks...
I didn't know the difference about local and curuser.
Thanks! _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
|