Problem with "start" command
Posted: 21 Jul 2019 05:15
So i doing rework on my program (https://github.com/infectedw/testerandtracker) and i have some weird problem (i think its bug).
Command start won't do anything, literally anything this is example of code:
So i need to open log.txt and it won't do anything, and yeah i checked twice "L" is upper.
Command start won't do anything, literally anything this is example of code:
Code: Select all
:Menu
title Menu
cls
echo ===============================================================
echo ^> Logged User: %USERNAME%
echo ^> Os: %SYSTEMID%
echo ^> Admin Rights: %aenabled%
echo ===============================================================
set/p choice="Command:"
@echo [%time%] [Command] "%choice%" >> Log.txt
if %choice%=="set-adminmode-on" goto :on
if %choice%=="set-adminmode-off" goto :off
if %choice%=="check-extension" start Extension.exe & goto Menu
if %choice%=="calc" goto calc
if %choice%=="cpanel" goto cpanel
if %choice%=="show-log" start /d "\Log.txt" Log.txt
goto Menu