473,766 Members | 2,120 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

console application direct from cd on system bootup

joedeene
583 Contributor
ok, i have a question, can you run a console application directly from bootup on the system, like set the boot order to cd for first and have a console application on the cd and it will come up. if not what kind of programming language will compile an application to run directly at boot order on the computer not operating system. for example a program like partition magic, doesnt need an operating system to partition the selected drive. i only suggest console app, because windows app looks to visual to be run at a computer bootup
Aug 8 '08 #1
13 1428
Curtis Rutland
3,256 Recognized Expert Specialist
As far as I know, it does have to be an OS. A very small one with a very specific purpose, but I'm pretty sure that it is an OS. And no, you can't run a .NET console app before windows is loaded. .NET relies on the framework and JIT compiler.
Aug 8 '08 #2
Plater
7,872 Recognized Expert Expert
If you wanted to get really nasty, you could customize a version of linux to be lightweight but then add in the mono/.NET support and try to do that. But that seems like a LOT of work.
Aug 8 '08 #3
joedeene
583 Contributor
wow, i new an windows application would, but the console application seems so simple like you could run it directly from the source, but it would make sense to have a compiler and you'd need an OS for that. but i'd still like to know how that program runs directly from the cd, like there's no program to program programs like such ? hmm
Aug 8 '08 #4
Plater
7,872 Recognized Expert Expert
It probably has its own mini-OS. You might be able to find some things on google about it. I've never dealt with it though.
Aug 8 '08 #5
Curtis Rutland
3,256 Recognized Expert Specialist
I'm positive that they have their own bootable OS. A small one, to be sure, but an OS nonetheless.
Aug 8 '08 #6
joedeene
583 Contributor
well that makes sense. but how can u make an os? or is it not possible for the average developer
Aug 8 '08 #7
Curtis Rutland
3,256 Recognized Expert Specialist
well that makes sense. but how can u make an os? or is it not possible for the average developer
Probably not. If you know assembly and c/c++, you're on the right track.

BTW, this reminds me of something really funny...
Aug 8 '08 #8
joedeene
583 Contributor
Probably not. If you know assembly and c/c++, you're on the right track.

BTW, this reminds me of something really funny...
wow, that is hilarious, haha he thought he knew everything, and visual basic isnt really much, *depending what your primary goal in programming is*, i'd like to learn C and C++ and learn how to create a whole system, it would be very neat, but im sure it takes a lot of practice and years of experience. ok thanks for your help, and if all goes successful, i will let you know, but i think im gonna put this project to the side for a while, and here is a link on how to create kernels in C++ for an operating system, for those interested in creating an operating system. thanks for your help, i was just curious. :)

http://www.osdever.net/bkerndev/index.php
Aug 8 '08 #9
Plater
7,872 Recognized Expert Expert
For your purposes I would have suggested TinyLinux or something like that.
Aug 8 '08 #10

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

Similar topics

4
4462
by: Jason Callas | last post by:
I am trying to figure out how to create a console window but cannot figure out how to do this. I know it can be done since the C# and VB console template projects do this but I see no code on how this is done. The only thing I can think of is that there is hidden code to spawn cmd.exe? Then they somehow direct console.read and console.write calls to the spawned process. Any thoughts (and some sample code) would be greatly appreciated.
1
5387
by: Oz | last post by:
This is long. Bear with me, as I will really go through all the convoluted stuff that shows there is a problem with streams (at least when used to redirect stdout). The basic idea is that my application (VB.NET) will start a process, redirect its stdout and capture that process' output, displaying it in a window. I've written a component for this, and a test application for the component. It allows me to specify a command to execute,...
5
4053
by: Mullin Yu | last post by:
i want to build an application of both gui and batch interface by using windows application project. i check either passing any args or not. if no, then open the gui application. if yes, use the batch interface. my problem is that i can output the string to the dos prompt when running the exe file at dos prompt: c:\>test.exe /?
17
4235
by: MumboJumbo | last post by:
Hi I have a really basic question hopefully some can help me with: Can you write a (i.e. one) C# project that works from the cmd line and gui? I seems if i write a GUI app it can't write to console using System.Console.WriteLine if thge project has its "Output Type" to "Windows Application". However I can write to stdio if i set output type to "Console Application". When I do this I unfortunately get a "console box" as well
0
1607
by: Maxwell | last post by:
Hello, I recently completed a MC++ (VS2003) DLL that wraps a non MFC C++ DLL and need to use it in a MC++ Console Application (no forms/guis of any kind just output to console). Trouble is that when I ran it and looked at memory usage (in Windows task manager) it looked as if there was a very slow leak. To isolate the issue:
2
2039
by: Johann Schuler | last post by:
I'm learning C#. I want to direct a console application's output to a screen where I can select and copy some of the text. How do I do this? Many thanks!
10
6348
by: Stephany Young | last post by:
When one uses the System.Diagnostics.Process.Start method to launch a common or garden Console application, one can set the WindowStyle property of the StartInfo object to ProcessWindowStyle.Hidden so that the window for the Console application is not visible. However, when using some of the 'advanced' properties of the StartInfo object, like Username, Password and Domain, the WindowsStyle property of the StartInfo object is ignored....
0
2064
by: Stephen Thomas | last post by:
Hi there I wonder if any one has encountered this problem or can suggest what is wrong. I am trying the a procedure from the msn site but get the following message: Error 1 The type or namespace name 'LiveSearch' does not exist in the namespace 'ConsoleSampleWebSearch' (are you missing an assembly reference?) C:\Documents and Settings\Compaq\Local Settings\Application Data\Temporary Projects\ConsoleSampleWebSearch\Program.cs 13 30...
1
8367
by: mquincey | last post by:
One of the features offered by .NET 2.0 is the use of the TraceSource class. In an attempt to demonstrate its use, I wanted to run my test under the following conditions: 1. Use TraceSource class (Not Trace or Debug classes) 2. Set up the trace solution in the application's application.config file 3. Use Visual Basic.NET to test the trace 4. Test the TraceSource using Visual Studio.NET 2005 IDE "Windows application" rather than with...
0
9568
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
9404
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
10008
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...
1
9959
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8833
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
7381
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
6651
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5423
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2806
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.