Want to make a installer for a game i play:
@echo off
echo.
echo Choose One
echo __________
echo.
echo 32
echo.
echo 64
echo.
echo Idk
echo.
echo __________
echo.
echo.
set/p bit=
goto %bit%
:32
xcopy "warcraft3" C:\Program Files
pause
goto done
:64
xcopy "warcraft3" C:\Program Files(x86)
pause
goto done
:idk
xcopy "warcraft3" C:\Program Files
pause
goto done
:done
the "warcraft3" is a folder not a zip or anything, it says it cant find the specified file.