Jump to content

Recommended Posts

Posted

What is the line of code i need to make an AutoIt Program i'm making always start at startup..

I thought it would be something like this

DirCopy(@AppDataDir,@StartupDir)
Posted

I'd do it this way:

RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "MyScriptname", "REG_SZ",@Scriptfullpath)

to remove it:

Regdelete("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "MyScriptname")

Posted

I'd do it this way:

RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "MyScriptname", "REG_SZ",@Scriptfullpath)

to remove it:

Regdelete("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "MyScriptname")

Pro :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...