Technology Programming

Create a Windows Start-Up Manager



Code submitted by Peter Bernard. Portions of article text by Zarko Gajic
Have you ever asked yourself where are those applications that seem to be executed when Windows start, you cannot find in the Start - StartUp Windows menu?
Or, how a virus can start itself each time you reboot? Or, who started all those applications you see in the System Tray?

Registry ... "\SOFTWARE\Microsoft\Windows\CurrentVersion\Run"

As you might guess, you can "automagically" start programs whenever Windows launches.

If you have programs automatically starting that you have not loaded (do not want) then you can remove them using the "Windows StartUp Manager" we will build in this article.
Here's how to manually specify an application to be run at Windows startup:
  1. Open your registry (Start - Run - regedit.exe) and locate the key "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run"
  2. For each program you want to start automatically create a new string value using a descriptive name, and set the value of the string to the program executable.
    For example, to automatically start "MyApplication.exe", add a new entry of "MyApp"="c:\MyApps\MyApplication.exe".
Note: modifications of the registry database could lead to a system crash (of course if you don't know what you are doing).

Building a Simple Windows StartUp Manager

The source code (download) accompanying this article shows how to build a program that allows a user to control which applications will run when Windows starts up, without having to put the application entries into the "Startup" menu.
Note: the source code is heavily documented.

In essence, the TRegistry object is used to manipulate the Registry from Delphi code.
SHARE
RELATED POSTS on "Technology"
Blitzerwarner: Could You Escape the Speed Cameras?
Blitzerwarner: Could You Escape the Speed Cameras?
What Makes a Perfect Web Design Company?
What Makes a Perfect Web Design Company?
Inside No-Fuss Products In Gaming Computers
Inside No-Fuss Products In Gaming Computers
Gaming Institute, Game Design Schools at PAI-ILS, PAI International Learning Solutions Pune
Gaming Institute, Game Design Schools at PAI-ILS, PAI International Learning Solutions Pune
Free Music Players For Websites
Free Music Players For Websites
'See How NCP Tracks Down Fake Ration Card Holders'
'See How NCP Tracks Down Fake Ration Card Holders'
You Can Stop Panic Attacks in Just two Minutes
You Can Stop Panic Attacks in Just two Minutes
WordPress Blog to WP Site! A Journey to Online Success
WordPress Blog to WP Site! A Journey to Online Success
Videos will give your business portal an extra leverage
Videos will give your business portal an extra leverage
Excellent Ways To Make Weight Loss Work For You
Excellent Ways To Make Weight Loss Work For You
Five Notable Differences between National and International Logo Designs
Five Notable Differences between National and International Logo Designs
Who Should Your Phoenix Web Design Client Be?
Who Should Your Phoenix Web Design Client Be?
White Papers & Other Documents - including ALFLB
White Papers & Other Documents - including ALFLB
Google Analytics Tips
Google Analytics Tips
Want To Make Your Website Faster? Follow These Steps
Want To Make Your Website Faster? Follow These Steps
The Starting of Couture Apparel
The Starting of Couture Apparel
Choose Custom Website Design Services
Choose Custom Website Design Services
Choosing the Right Joomla CMS Developer
Choosing the Right Joomla CMS Developer
A Look at SQL Server Denali AlwaysOn
A Look at SQL Server Denali AlwaysOn
4 Tips to Choose the Perfect Flash Animation Course
4 Tips to Choose the Perfect Flash Animation Course

Leave Your Reply

*