verify other 2> nul
if errorlevel 1 echo Unable to enable extensions
The setlocal command example
You can differentiate environment variables in a batch file, as shown in the following sample script:
rem ******* Begin Comment **************
rem chương trình này bắt đầu các chương trình superapp chương trình trên mạng,
đang ghi lại các kết quả vào một tập tin, và hiển thị tập tin
rem in Notepad.
rem ******* End Comment **************
@echo off
setlocal
path = g: programssuperapp;% path%
superapp call> c: superapp.out
endlocal
start notepad c: superapp.out
See more: