Endlocal command in Windows
The endlocal command ends the localization of the environment changes in a batch file, and restores the environment variables to their original values before the corresponding setlocal command is run.
The endlocal command ends the localization of the environment changes in a batch file, and restores the environment variables to their original values before the corresponding setlocal command is run.
For an example of how to use this command, please see the example below.
Endlocal command syntax
endlocal
Parameters
Parameter Description /? Show help at the command prompt.Note
- The endlocal command has no effect outside the script or batch file.
- There is an implicit endlocal command at the end of each batch file.
- If the command extensions are enabled (command extensions are enabled by default), the endlocal command restores the state of the command extensions (that is, enabled or disabled) becomes the state before the corresponding setlocal command is run.
Note:
For more information on how to enable and disable command extensions, refer to the article about the Cmd command in Windows.
For example
You can localize environment variables in a batch file. For example, the following command line starts the super-application batch program on the network, passes the output to a file and displays that file in Notepad:
@echo off setlocal path=g:programssuperapp;%path% call superapp>c:superapp.out endlocal start notepad c:superapp.out
See more:
- The echo command in Windows
- Edit command in Windows
- Driverquery command in Windows
4 ★ | 1 Vote
You should read it
Maybe you are interested
What to do when open command window here does not appear?
How to switch users on the Linux command line
How to fix Mac Homebrew error 'zsh: command not found: brew'
What is the Command key on Windows?
How to use read command in Linux
Basic Linux commands everyone needs to know - Operations on Linux are much faster