Exit Command In Windows server 2008

This article describe about Exit command in windows server 2008 operating system and also explains it's syntax.
  • 1860

Introduction

Exit command is command line tool that is built in Windows server 2008. Exit command is used to end the cmd.exe (that is, the command interpreter). You can also use this command within a batch file to exit the current batch script and return to exit the batch file.

Syntax

exit [/b] [<ExitCode>
Parameters
Parameter Description
/b Specifies that you want to exit a current batch script rather exiting cmd.exe. If you don't specify this command, the command window closes.
<ExitCode> Specifies exit code for the batch file. You can use the exit codes to alert the caller to errors or special conditions. These codes are not predefined, you can define any set of exit codes necessary for your application.

Example

Closes the cmd.exe

exit

Ask Your Question

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.