Question

When we type in the name of a batch file in Command Prompt, Command Prompt will...

When we type in the name of a batch file in Command Prompt, Command Prompt will look for variables called:

Group of answer choices

Preset Variables

Replacement Variables

Permanent Variables

Batch Variables

We can use this character to pass the output from one command to the next:

Group of answer choices

| (Pipe)

, (Comma)

> (Angled Bracket)

& (Ampersand)

The following is utility tool we can use that are resided in the directory C:\Windows\System32:

Group of answer choices

IPCONFIG

NETSH

PING

All of the above

To view a list of logical ports listening, we can use this utility tool:

Group of answer choices

NETSTAT

IPCONFIG

PING

ROUTE

Homework Answers

Answer #1

When we type in the name of a batch file in Command Prompt, Command Prompt will look for variables called:Batch variables.

We can use this character to pass the output from one command to the next : | (pipe)

,(comma) is used to split when there are many variables.

>(Angles bracket) - used for redirecting the output.

&(Ampersent) - Used to seperate commands when there are multiple commands present.

The following is utility tool we can use that are resided in the directory C:\Windows\System32: All the above

IPCONFIG tool , NETSH tool , PING tool all these tools are used for network configuration.(i.e) Used to reside in directory.

To view a list of logical ports listening, we can use this utility tool:NETSTAT

netstat -an |find /i "listening" , this is a command used to list all the logical ports listening.

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
When we open Command Prompt with elevated rights (as an Administrator), except if we use the...
When we open Command Prompt with elevated rights (as an Administrator), except if we use the File Explorer in a particular directory, we are normally at this directory. Group of answer choices C:\Windows\System32 C:\Users\Username\Desktop C:\Windows C:\Users\Username The following commands are some of the ways to view the username of the current users, except: SET ECHO whoami WHOAMI ECHO %username% We can find out the BIOS version, OS Name, System Type, and other system related information with this tool: Group of...
When we use DIR without any switches, we will see the following information, except: Last Modified...
When we use DIR without any switches, we will see the following information, except: Last Modified Time File/Directory Name Ownership File Size While we can use the % for variables in the FOR command in Command Prompt, we need to use this when we use the FOR command in a batch file: ** %% && $$ We can refresh the results of NETSTAT by using this switch: No switch, just list the seconds (e.g. 30) -t -a -o
I did already posted this question before, I did get the answer but i am not...
I did already posted this question before, I did get the answer but i am not satisfied with the answer i did the code as a solution not the description as my solution, so i am reposting this question again. Please send me the code as my solution not the description In this project, build a simple Unix shell. The shell is the heart of the command-line interface, and thus is central to the Unix/C programming environment. Mastering use of...