ExeScript  

ExeScript 3.0

ExeScript Batch to EXE - Batch File Commands, Cmd Commands, Command Prompt


Create secured stand-alone applications from BAT, VBS, JS, WSF, WSH or HTA scripts.
ExeScript is a useful and efficient program with which you convert different scripts to executable files (.exe). It supports such script types as Batch (BAT), VBScript (VBS), JavaScript (JS), WSF, Windows Script Host (WSH), and HTML Application (HTA) files. You can protect the contents of .bat, .vbs, and .js files from modification by other users with ExeScript.


Download  Purchase Now

GOTO

Jump to a section in a batch file. Directs the Windows NT
command interpreter to a labeled line in a batch program.

Syntax

goto label

Parameters

label   : Specifies the line in a batch program that you
          want to go to.

To go to a different section in a batch file. You may create
different sections by preceding the name with a colon.
:SUBSECTION
Programmers may find this similar to funtions or
sub-routines.

@ECHO OFF
:FIRSTSECTION
ECHO This is the first section
PAUSE
GOTO SUBSECTION

:SUBSECTION
ECHO This is the subsection
PAUSE


Skip sections of a batch file
@ECHO OFF
:ONE
ECHO This is ONE, we'll skip TWO
PAUSE
GOTO THREE

:TWO
ECHO This is not printed

:THREE
ECHO We skipped TWO!
PAUSE
GOTO END
:END 
CLS
EXIT


Looping with GOTO
:BEGIN
REM Endless loop, Help!!
GOTO BEGIN
    

Batch File Commands

Current version

v.3.0

Get support

How To