batch file variables code example
Example 1: how to declare variables in batch file
SET variable_name="vaue"
Example 2: batch script arguments
@echo off
echo %1
echo %2
echo %3
SET variable_name="vaue"
@echo off
echo %1
echo %2
echo %3