Error running compiled .exe - newly registered

Convert your BATch files into EXEcutable format in one click.
Post Reply
SnD_Dackr
Posts: 1
Joined: Sat Jul 22, 2006 3:50 pm

Post by SnD_Dackr »

Ok- I compiled a simple batch file. All ok, right? Well- I ran the file and got this error:
Image

Here is the batch source:

@echo off
rem cd\
rem cd batch
rem copy choice.exe %windir%\system32\choice.exe

:start
cd\
cls
echo.
echo.
echo ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
echo ³ SnD Tool Menu ³
echo ÉÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º1. Network Setup º
echo º2. .NET Framework Setup º
echo º3. Spybot Search-and-Destroy Setup º
echo º4. Tweak UI Setup º
echo º5. Exit º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo.
echo Select:
choice /c:12345
if errorlevel 5 goto eof
if errorlevel 4 goto tui
if errorlevel 3 goto spybot
if errorlevel 2 goto dotnet
if errorlevel 1 goto setnet


:setnet
cls
cd other
start netsetup.exe
goto start

:dotnet
cls
cd other
start dotnetfx.exe
goto start

:spybot
cls
cd other
start spybotsd14.exe
goto start


:tui
cls
cd other
start tuisetup.exe
goto start

:eof
cls
--------------------------------------

Let me know if anyone finds a workaround for this. I'd been using the batch file off of a flash drive for a while before compiling. Hopefully it's something simple. Thanks!


-----
Update:
Nevermind. It may be a hardware issue. Seems to be an intermittent problem. :D



Edited By SnD_Dackr on 1153584831
Post Reply