Running 32bit console application at boot up

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
aceraven777
Posts: 1
Joined: Sat Jan 21, 2012 1:16 am

Running 32bit console application at boot up

Post by aceraven777 »

I made a 32bit console application in c++, it is possible to run it at boot up and then boot to windows OS.
User avatar
VolTeK
Member
Member
Posts: 815
Joined: Sat Nov 15, 2008 2:37 pm
Location: The Fire Nation

Re: Running 32bit console application at boot up

Post by VolTeK »

If you boot to dos, run the program, then restart and boot to windows (assuming its an NT version of windows and not a 9x - 2000)

Otherwise, have fun reading.
User avatar
VolTeK
Member
Member
Posts: 815
Joined: Sat Nov 15, 2008 2:37 pm
Location: The Fire Nation

Re: Running 32bit console application at boot up

Post by VolTeK »

Run it at boot up. You mean run the windows bootlo..




No.
linguofreak
Member
Member
Posts: 510
Joined: Wed Mar 09, 2011 3:55 am

Re: Running 32bit console application at boot up

Post by linguofreak »

aceraven777 wrote:I made a 32bit console application in c++, it is possible to run it at boot up and then boot to windows OS.
Without making huge changes to your application, almost certainly not (your program runs under Windows so far, right?).
User avatar
bluemoon
Member
Member
Posts: 1761
Joined: Wed Dec 01, 2010 3:41 am
Location: Hong Kong

Re: Running 32bit console application at boot up

Post by bluemoon »

aceraven777 wrote:I made a 32bit console application in c++, it is possible to run it at boot up and then boot to windows OS.
If you mean, running a 32-bit Windows Console application before booting into windows; obviously it's not logical, unless you refine your question.

On the other hand, this is not Windows How-To forum, as other mentioned.
rdos
Member
Member
Posts: 3308
Joined: Wed Oct 01, 2008 1:55 pm

Re: Running 32bit console application at boot up

Post by rdos »

I once could run "well behaved" (= not made with M$ tools) Win32 console applications in my OS. I no longer actively support it as I integrated native support in OpenWatcom. The main problem is to support all the (often unnecesary) functions that the linker / compiler adds by default. Newer M$ tools drags in most of Win32, so you are not likely to get that to run ever, unless you use Wine or some other advanced Windows emulator.
User avatar
Solar
Member
Member
Posts: 7615
Joined: Thu Nov 16, 2006 12:01 pm
Location: Germany
Contact:

Re: Running 32bit console application at boot up

Post by Solar »

@rdos:

Do you even realize how completely beside the point your posting is? Or does your need to brag at every opportunity eclipse that completely?
Every good solution is obvious once you've found it.
Post Reply