Create batch operating system (.bat)

0

Is it possible to create a real operating system in batch ( .bat )? Well I saw some YouTube videos where the title was something "OS in batch."

    
asked by anonymous 14.09.2017 / 18:34

1 answer

3

It is not possible for a simple reason, to run a batch script needs an interpreter that needs an operating system.

A simulation, something complementary to a basic done with other technologies but low level, kind of a joke, even is possible.

An operating system has to access the hardware, it is not possible with something so primitive. Of course you can call operating system something that operates something at a higher level in a more specific way, but it is not the OS that computing defines.

What I found researching is a simulation of what would be an operating system, even so in a very incipient way, ie it's just a joke, not a real OS.

    
14.09.2017 / 18:43