News:

This week IPhone 15 Pro winner is karn
You can be too a winner! Become the top poster of the week and win valuable prizes.  More details are You are not allowed to view links. Register or Login 

Main Menu

How to programmatically make your programs run on Windows startup

Started by charleychacko, October 15, 2006, 12:10:26 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

charleychacko

It's easy enough to drag and drop your application to the Windows Startup group to make it run on Windows startup. But, if you wanted to do this from your program, at the end of your setup program for example, or if you wanted to make your program run just once the next time Windows start, following function might come in handy:

procedure RunOnStartup(
  sProgTitle,
  sCmdLine    : string;
  bRunOnce    : boolean );
var
  sKey : string;
  reg  : TRegIniFile;
begin
  if( bRunOnce )then
    sKey := 'Once'
  else
    sKey := '';

  reg := TRegIniFile.Create( '' );
  reg.RootKey := HKEY_LOCAL_MACHINE;
  reg.WriteString(
    'SoftwareMicrosoft'
    + 'WindowsCurrentVersionRun'
    + sKey + #0,
    sProgTitle,
    sCmdLine );
  You are not allowed to view links. Register or Login;
end;
Listing #1 : Delphi code. Download wstartup (0.38 KB). You are not allowed to view links. Register or Login

Usage:

sProgTitle:
Name of your program. Generally speaking, this could be anything you want.
sCmdLine:
This is the full path name to your executable program.
bRunOnce:
Set this to True if you want to run your program just once. If this parameter is False, specified program will be executed every time Windows startsup.

Example:

RunOnStartup(
  'Title of my program',
  'MyProg.exe',
  False );
Listing #2 : Delphi code. Download demo (0.18 KB). You are not allowed to view links. Register or Login