#8442 - 09/14/02 05:53 PM
Re: DOS user input
|
Joined: Mar 2002
Posts: 1,273
SilentRage
DollarDNS Owner
|
DollarDNS Owner

Joined: Mar 2002
Posts: 1,273
OH, USA
|
yo stupid, I already gave you code on how to do this. Here, I'll leave out all the extra crap, maybe you'll get a clue this time. It's part of a batch file I've made to install a program I've made. @ECHO OFF
:MAIN
CLS
ECHO Welcome to the TCP WorkShop Installation setup.
ECHO Here we'll register or unregister the required DLL files.
ECHO.
ECHO Please choose:
ECHO 1 Auto Install
ECHO 2 Auto Uninstall
ECHO 3 Expert Install
ECHO 4 Expert Uninstall
ECHO 5 Quit
ECHO.
CHOICE /n /c:12345 "> "
IF ERRORLEVEL 5 GOTO QUIT
IF ERRORLEVEL 4 GOTO EUninstall
IF ERRORLEVEL 3 GOTO EInstall
IF ERRORLEVEL 2 GOTO AUninstall
IF ERRORLEVEL 1 GOTO AInstall
:AInstall
ECHO dumbass pressed 1
pause
GOTO MAIN
:AUninstall
ECHO dumbass pressed 2
pause
GOTO MAIN
:EInstall
ECHO dumbass pressed 3
pause
GOTO MAIN
:EUninstall
ECHO dumbass pressed 4
pause
GOTO MAIN
:QUIT
ECHO dumbass wanted to quit
pause See that? Put that into a batch file and run it. Can't you figure it out by example? (required external program: CHOICE.COM. You used to be able to download batch utility files from my website, but since I don't have it up yet, I've opened an FTP server to its download directory: server: serialcoders.sytes.net:21 location: /Download/DOS/BatUtils.zip)
|
|
|
#8449 - 09/16/02 12:32 AM
Re: DOS user input
|
Joined: Mar 2002
Posts: 562
Le4rner
UGN Supporter
|
UGN Supporter

Joined: Mar 2002
Posts: 562
|
Just know this, SR used to be [email protected]@ngel It got ugly, then he became SilentRage. He is such a n00b but we love him anyway. :p
|
|
|
#8454 - 09/19/02 06:27 PM
Re: DOS user input
|
Joined: Aug 2002
Posts: 274
ohfuk
UGN Supporter
|
UGN Supporter

Joined: Aug 2002
Posts: 274
Likes: 1
|
|
|
|
|
Forums41
Topics33,701
Posts68,795
Average Daily Posts0
|
Members2,173
Most Online1,567 Apr 25th, 2010
|
|
|
Okay WTF?
by HenryMiring on 09/27/17 08:45 AM
|
|
|
|
|
|
|
|