473,699 Members | 2,534 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Start program @ bootup

84 New Member
Hi,
I have a program (or exe file) which I want to load every time I start my computer and login. Can anyone please tell me how to do this.
Thanks
Dec 28 '07 #1
8 1941
epots9
1,351 Recognized Expert Top Contributor
Create a new Scheduled Task, with the wizard set it so it runs everytime you login.
Dec 28 '07 #2
programmerboy
84 New Member
Thanks for the reply but I want to know if there is any other way to do it?
Dec 28 '07 #3
epots9
1,351 Recognized Expert Top Contributor
try making a registry entry at:
HKEY_LOCAL_MACH INE\SOFTWARE\Mi crosoft\Windows \CurrentVersion \Run

create a new key string, name it what you want
double click the key
enter the path to the exe in the data field
Dec 28 '07 #4
PunchBackJack
10 New Member
I used this article to make a program automatically run at startup at my last co-op using the MMC console. It worked great, something you might try. Not sure if you can get the program to login as well though.

-PunchBack
Dec 31 '07 #5
programmerboy
84 New Member
which article you are referring to?
Dec 31 '07 #6
Scotter
80 New Member
you could write a batch and put that in the startup folder,

C:\Documents and Settings\All Users\Start Menu\Programs\S tartup

that way the batch will be executed when you log-in. You could also specify what user if you replace All Users with a specific user. That way the batch won't be run everytime anyone logs on, but just when a specific user logs on.

I'm not much of a programmer, but i think something like this should work:

Expand|Select|Wrap|Line Numbers
  1. @ECHO OFF
  2. <path\file.exe>
  3. EXIT
  4.  
or

Expand|Select|Wrap|Line Numbers
  1. @ECHO OFF
  2. START <path\file.exe>
  3. EXIT
  4.  
and then save it in the startup folder as <somename>.ba t the .bat has to be at the end.
Jan 3 '08 #7
AmberJain
884 Recognized Expert Contributor
Instead of putting the path of file in a batch file and putting it in startup folder, you can also put the path of file you wanna run in AUTOEXEC.bat file in root partition marked bootable on Hard disk.
_______________ _______________ _______________ _______________ _____
Hope this helps
Mar 6 '08 #8
MoodyCelt
5 New Member
Instead of putting the path of file in a batch file and putting it in startup folder, you can also put the path of file you wanna run in AUTOEXEC.bat file in root partition marked bootable on Hard disk.
_______________ _______________ _______________ _______________ _____
Hope this helps
You can always (win xp/98) go into the start directory and create a shortcut to the program.

Ex: program located at c:\mystuff\p1.e xe

Then, go to the startup directory (as an example)
C:\Documents and Settings\Owner\ Start Menu\Programs\S tartup
Right-click and create a shortcut -
Name it whatever you want and put the location as listed for the p1.exe but substitute your directory and file name.

Hope it's helpful!
Jun 29 '08 #9

Sign in to post your reply or Sign up for a free account.

Similar topics

12
4095
by: GTi | last post by:
I have small program that always must be running when a user is logged on. Since users can close this program I must create a program that always check if this program is running. So I created a program in C# (my first!!) and it works with one major problem. This program detects when the desktop program is not running and starts it again. All works as expected BUT The desktop program is running as a SYSTEM user. That is not what I...
1
3018
by: MAL | last post by:
Hello, I have 2 classes that work great as a windows app to retrieve and process data from an Oracle9i db. When I implement them in a Service program running as Local System, it fails on the .open. I am using OLEDB for Oracle 9.2.0.4. I have verified the Oracle Client install, Local Sys' path variable, and followed MSKB article 259959(Debugging connectivity issues w/ Oracle). Here is the error:
29
3953
by: tele-commuter | last post by:
Hi folks, I want to understand how exactly is an image(compiled c code and loaded into memory) stored in memory. What exactly is a linker script? I work with a lot of c code on a daily basis but I really don't understand :
17
6438
by: UJ | last post by:
Is there any way for a windows service to start a windows program ? I have a service that will need to restart a windows app if it needs to. TIA - Jeff.
8
1020
by: iwdu15 | last post by:
hi, how can i get my program to start on every boot of the computer? -- -iwdu15
1
1127
by: Anup | last post by:
Hi All, I have a web services(like Map point 2004) which has to be manually started on rebooting. Can a windows based Service(c#) be created which automatically starts a web service.? If so how can it be done. Plz do reply, anup kamat
2
1760
by: holysmokes99 | last post by:
I am developing a component in .Net 1.1, and want to debug it using the "start external program" of the debugger in the IDE. The program I want to start references both 1.1 and 2.0 components. The problem is that when I launch this from VS2003, the external program starts only for a moment and then bails out of memory with no error, and the ide returns to a stopped state awaiting my input. If I remove the 2.0 framework, at least the...
4
21737
by: carson | last post by:
I have written two windows services: - service A does some crunching of local data files and uploads them to a central processing computer via http. - service B monitors a manifest file on a webserver to see if service A needs to be updated. What service B does if it sees their is an update for service A is to download a new copy of the service A executable, stop service A, replace the executable with the new copy, and start service B...
1
1150
by: ktg024 | last post by:
I want to wish the user according to the time when the system bootups .
0
8706
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8633
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9199
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9055
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7787
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6552
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4392
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4642
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2366
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.