answersLogoWhite

0

Add your answer:

Earn +20 pts
Q: What is the name of the program that you can enter in the Windows 8 run box to execute event viewer what is the process that is running when event viewers is displayed on the screen why do you think t?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What program file must you execute to install the Backup utility in Windows 7?

Microsoft office


What is the comparison between a process and a program?

A process is an 'instance' of a program. A program by itself is a set of instructions usually stored in a file. You generally compile a program into an executable. Think of executable as the form of a program that machine can understand. Now, when you execute a program, it results in an instance and hence a process. In Windows, here are some examples: Write a batch program using windows commands and store in a .bat file. This type of program does not need any further compilation. Now running it will result in a process. Depending on what the batch file is doing this may be a long running process (and hence you will see it in the task manager) or a short one. Write a program in C language with a main in it (main is an entry point into a program with input and output). Compile it using a C compiler and the result is a .exe. Running this exe creates a process.


Who execute a program?

Anobody who uses it is said to "execute" or "run" the program.Anobody who uses it is said to "execute" or "run" the program.Anobody who uses it is said to "execute" or "run" the program.Anobody who uses it is said to "execute" or "run" the program.


What program must you execute to install the Backup utility in Windows XP Home?

From the WinXp CD "winxpCD"\valueadd\msft\ntbackup\Ntbackup.msi


What is the difference between program and process?

Program is a set of instruction whereas process is program in execution. Program is passive entity whereas process is active entity .Program has single instance whereas process has several instances.For eg.several notepad windows can be opened but same program is executed behind each window. Program is dependent on logic used whereas process is dependent on program.


What does autorun.inf do?

Autorun.inf is a small file that dictates what program should be launched and what icon should be displayed in My Computer in Windows when a CD or DVD is inserted.


What are process states in operating system?

To put it in simple terms, we write our computer programs in a text file and when we execute this program, it becomes a process which performs all the tasks mentioned in the program. When a program is loaded into the memory and it becomes a process, it can be divided into four sections ─ stack, heap, text and data


What is the first step in the schedule preparation process and what is its end result?

Identify the Tasks; a list of all the tasks required to execute the program.


How do you run daemon process?

In Unix, with a C program you can run a quick function to do this. There is an example at:(link moved to link section)AnswerIn Solaris, you need to disconnect your program from your "terminal" ( scripts generally inherit the stdin, stdout, and stderr of your shell when you execute them ). For a shell program you can execute "nohup $program < /dev/null > /dev/null 2>&1 &". Or the shell program can redirect its own stdin, stdout, and stderr -- then you can execute "nohup $program &".


What program does Windows XP use to begin the hardware detection process at boot?

ntdetect.com


What kind of server is used to hold the setup files on a windows CD or DVD on the network and then at each PC you can execute the setup program on the server?

distribution Sever


Is it possible to make a program that combines a lot of other programs?

Yes. One program can execute another program very easily -- you can even do it via scripting languages and batch programming. Morevoer, programs that provide shared code via one or more libraries make it possible for another program to execute code within those libraries, just as if that code were part of the program itself (no need to execute another program). Such programs often provide application programming interfaces (APIs) to simplify the process of integration.