answersLogoWhite

0

MS-DOS

MS-DOS is a 16-bit operating system for IBM PC-compatibles. It was developed and sold by Microsoft in the early 90s. Although no longer in common use, it is still used to load some diagnostic and repair utilities even on modern computers.

734 Questions

Why does it remain important to know how to use the DOS commands?

DOS and DOS-like commands are still usable in modern versions of Windows, and can sometime be the only way to accomplish a given task.

How do you unlock cmd when run and bat files are blocked?

go to start, double click a folder like "programs" and go up a folder to get to the c:\ drive... then navigate to c:\windows\system32\. copy cmd.exe to desktop or my docs and rename "cmd.exe" to "calc.exe" or "notepad.exe" because it will think that you are trying to run those programs.

Under ms dos interrupts originate with?

Under MS DOS, interrupts originate with the central processing unit (CPU). The CPU recognizes issues in applications and stops them and sometimes restarts them in order for them to function properly. Sometimes it shut the application down entirely.

What is syntax Is command?

The 'ls' command has many switches and options, especially depending on which version of Unix or Linux you are talking about. The best way to find out is to try either:

man ls

info ls

ls --help

depending on the system.

How to rename files name dos command?

ren c:\test.txt test2.txt

Results: file in drive c:\ will be renamed to test2.txt

Why won't ksensors display hddtemp information running as daemon either in user or root mode?

ksensors does not need hddtemp to run as deamon set suid root on hddtemp (debian: dpkg-reconfigure hddtemp) and run ksensors as a normal user.

How do you use the ATTRIB command?

Format:

ATTRIB (+ or - H R S A) DRIVE:\PATH\File.ext

+ Sets an attribute

- Removes an attribute

H = Hidden

R = Read-Only

S = System

A = Archive

Nomes dos instrumentos musicais do brasil?

Cavquinho, viola, violão, acordeón, flauta, clarinete, saxofone, contrabaixo, afuchê,

pandeiro, piston, piano, keyboard, etc.

Who owns DOS?

MS DOS or DOS was originally created by Mac (apple) and it was used

in various applications. It was bought and owned by Microsoft for $9,000,000 early 90s.

What is PC DOS?

DOS stands for Disk Operating System.

DOS was the operating system used by IBM on the first Personal Computer (PC) - hence PC-DOS.

What is the DOS copy command to copy a complete directory to multiple 3.5 inch floppies?

To copy directory, you need to run xcopy command.. You can not copy directory with copy command..

xcopy c:\*.* /s/e a:\

This will copy entire contents to A drive..

How do you make a yes no command in cmd?

Example 1 1. @echo off
2. set /p answer=Do you wish to continue? (Y/N):
3. pause
4. cls
Open Notepad and enter this in, then save it as "test.bat". Then open it and it will work like a charm.


Example 2 If your looking for something more of a challenge, and more advanced try this one. 1. @echo off
2. :start
3. cls
4. set /p answer=Do you wish to continue? (Y/N):
5.
6. if %answer% == Y goto G
7. if %answer% == y goto G
8. if %answer% == N goto H
9. if %answer% == n goto H
10.
11. :G
12. cls
13. echo Alright let's continue!
14. pause>nul
15. goto start
16.
17. :H
18. cls
19. echo Alright don't continue...
20. pause>nul
21. goto start
Open Notepad and enter this in, then save it as "test.bat". Then open it and it will work like a charm.


Which command in dos can be used to recover accidentally deleted?

You can recover your file by undelete command:

undelete <filename>

What is the dos equals high umb command used for?

This is used to load as much of MS-DOS as possible above the 640k barrier. This leaves as much free conventional RAM for older programs as possible.

What is the difference between copy command and move command?

A move command is simply a copy command which deletes the original once it's finished.

When MS-DOS is started which file loaded first?

Boot file load sequence:

IO.SYS

MSDOS.SYS

COMMAND.COM
IO.SYS FILE

http://www.techs-on-call.biz/blog/post.cfm/understanding-how-a-computer-works-part-3-early-apple-computers-and-ms-dos

Differences between MS-DOS and Unix in networking?

MS-DOS was not designed for networking, and doses not come with any tools to do so by default.

How do you read binary file using c command?

FILE* f

f = fopen ("file name", "br");

... fread (f, ...);

fclose (f);