April 1, 200521 yr hello to alli build a unattended installation but now i want to put a aplication on startup of windows .i have the aplication BGINFO that i want to put on unattended installation and make it to run after installation (not runonce, the other run)thanks for da help
April 1, 200521 yr If i understand you correctly you want to add your application into the startup options of windows so it loads everytime you start windows. Well to do this you can do the following.Add an entry into the registry will make your program load on windows startup. Either use HKLM or HKCU, thats your choice.[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]"<name you want for app>"="<app path>"[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run]"<name you want for app>"="<app path>"So for example if i had a program called mike it could be:[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]"mikesprogram"="c:\program files\mike.exe"
April 5, 200521 yr Author wellnot working goodbut i need some helpi want to use bginfo @ the startup of xp after install but using the config file (bgi)there is a way to do this ?thanks
September 7, 200718 yr If i understand you correctly you want to add your application into the startup options of windows so it loads everytime you start windows. Well to do this you can do the following.Add an entry into the registry will make your program load on windows startup. Either use HKLM or HKCU, thats your choice.[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]"<name you want for app>"="<app path>"[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run]"<name you want for app>"="<app path>"So for example if i had a program called mike it could be:[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]"mikesprogram"="c:\program files\mike.exe"i use %programfiles% in my app path to bypass the problem of install windows on different drivean doesn't work ? please Help me
September 7, 200718 yr You could try something like this:Windows Registry Editor Version 5.00[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]"BgInfo"="\"<Drive>\\<PathTo>\\Bginfo.exe\" \"<Drive>\\<PathTo>\\<FileName>.bgi\" /silent /timer:0 /NOLICPROMPT\""
September 8, 200718 yr Just put a shortcut to the application you want to start up in the ALL USERS startup folder, job done
September 8, 200718 yr Of course they could, although that isn't what they asked for!The shortcut would need to say something like this:"<Drive>\<PathTo>\Bginfo.exe" "<Drive>\<PathTo>\Config.bgi" /silent /timer:0 /NOLICPROMPTThe above should all be on one line.
September 11, 200718 yr You could try something like this:Windows Registry Editor Version 5.00[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]"BgInfo"="\"<Drive>\\<PathTo>\\Bginfo.exe\" \"<Drive>\\<PathTo>\\<FileName>.bgi\" /silent /timer:0 /NOLICPROMPT\""Hi Yzöwl thank you for trying help mei want to use this :Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]"LClock"=%programfiles%\LClock\LClock.exeand doesn't work ? i dont know why ?!this to avoid the problem of installing the system on a different drive of C:@dubsdj:thanks its a good idea. but i want to make it with registry.
September 11, 200718 yr i want to use this :Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]"LClock"=%programfiles%\LClock\LClock.exeand doesn't work ? i dont know why ?!this to avoid the problem of installing the system on a different drive of C:The target should be between double quotes.Replace your code with the following.[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run]"LClock"="%ProgramFiles%\LClock\LClock.exe" Edited September 11, 200718 yr by Arie
September 11, 200718 yr @Arie :doesn't work.Please HelpWorks in my virtual machine though. Is LClock installed properly? Run the installer and add the registry key again:LC162b.exe /S
Create an account or sign in to comment