Run my process on sytem Start up
-
Hi: i need to run my process befor windows running . not by using the Run key or Winlogon key or start up floder. that is mean i need to Run it when operating systems choosing menu apparing in Dos. thanx alot. Bye. On Earth nothing impossible, while your mind running. Faroqtam
-
Hi: i need to run my process befor windows running . not by using the Run key or Winlogon key or start up floder. that is mean i need to Run it when operating systems choosing menu apparing in Dos. thanx alot. Bye. On Earth nothing impossible, while your mind running. Faroqtam
It depends whether you want to run an Windows application or a DOS program. If you want to run a DOS program and you are using Winpx versions of Windows, then you can add a line in AUTOEXEC.BAT to run your program while the Windows boots up. If you are running a Windows based application, then you can use something called Services. There are a lot of settings which can be made to a perticular service depending on the requirements. Cheers, Nagu It does not matter WHAT you Say. It does not matter WHEN you Say. The only thing that matters is HOW you Say. Cheers, Nagu
-
Hi: i need to run my process befor windows running . not by using the Run key or Winlogon key or start up floder. that is mean i need to Run it when operating systems choosing menu apparing in Dos. thanx alot. Bye. On Earth nothing impossible, while your mind running. Faroqtam
Hi, What exactly you mean to say by, "before windows running"? What I understood is you are having your exe(independent of any API`s or DOS help) and you want to execute it. Answer for this is: Your exe should be totally using BIOS calls,cuz at this time no OS has been loaded neither Winpx nor DOS..rt?. So you can make run your exe by modifying MBR code(boot-loader) Cheers Tom
-
Hi: i need to run my process befor windows running . not by using the Run key or Winlogon key or start up floder. that is mean i need to Run it when operating systems choosing menu apparing in Dos. thanx alot. Bye. On Earth nothing impossible, while your mind running. Faroqtam
faroqtam wrote: that is mean i need to Run it when operating systems choosing menu apparing in Dos. How do you expect to run a program even before the user has chosen which OS to boot? --Mike-- LINKS~! Ericahist | 1ClickPicGrabber | CP SearchBar v2.0.2 | C++ Forum FAQ Strange things are afoot at the U+004B U+20DD
-
faroqtam wrote: that is mean i need to Run it when operating systems choosing menu apparing in Dos. How do you expect to run a program even before the user has chosen which OS to boot? --Mike-- LINKS~! Ericahist | 1ClickPicGrabber | CP SearchBar v2.0.2 | C++ Forum FAQ Strange things are afoot at the U+004B U+20DD
-
Hi: i need to run my process befor windows running . not by using the Run key or Winlogon key or start up floder. that is mean i need to Run it when operating systems choosing menu apparing in Dos. thanx alot. Bye. On Earth nothing impossible, while your mind running. Faroqtam
faroqtam wrote:
i need to run my process befor windows running . not by using the Run key or Winlogon key or start up floder. that is mean i need to Run it when operating systems choosing menu apparing in Dos.
If you want to run after an OS is select from the menu, try to learn to create a windows service[^]. But if you want to run it before an OS select, you might need to build you own instrction in assembly.