Hola AYCUL,
Bueno puedes adjuntar una CADENA en la siguiente direccion del registro de sistema de Windows:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run
En este direcotorio creas un VALOR DE LA CADENA, le das un nombre para identificar a tu aplicacion y en la parte de datos pon el PATH de tu aplicacion por ejemplo "C:\Window\System\Aplicacion.exe"
Tambien te envio una funcion que te servira de mucho:
Sub ModificarRegistro()
Dim WS, p1
Set WS = CreateObject("WScript.Shell")
p1 = "HKLM\Software\Microsoft\windows\CurrentVersion\Run\"
WS.RegWrite p1 & "SysCom", "C:\Windows\System\Aplicacion.exe"
Set WS = Nothing
End Sub
Espero te sirva.
chau
RolandMariscal